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