Registers the conditional MissedCallCountChanged event handler.
void main() { var phone = new Resco.Phone.Phone(); phone.RegisterMissedCallCountChange(OnMoreMissedCalls, StatusComparisonType.More, 1); // ... phone.UnregisterMissedCallCountChange(OnMoreMissedCalls); } void OnMoreMissedCalls(object sender, ChangedValEventArgs<int> args) { System.Diagnostics.Debug.WriteLine("More than one call was missed"); }
Phone Class | Resco.Phone Namespace