Esempio n. 1
0
 protected virtual void OnGetCallInfoConnectEvent(string number, CallInformationType type)
 {
     GetCallInfoConnectEvent?.Invoke(this, new GetCallInfoEventArgs(number, type));
 }
Esempio n. 2
0
 protected virtual void OnGetCallInfoEvent(CallInformationType type)
 {
     GetCallInfoEvent?.Invoke(this, new GetCallInfoEventArgs(Number, type));
 }
Esempio n. 3
0
 public GetCallInfoEventArgs(string outgoingphonenumber, CallInformationType type)
 {
     OutgoingPhoneNumber = outgoingphonenumber;
     Type = type;
 }