internal CallConnectionStateChangedEvent(CallConnectionState callConnectionState)
 {
     CallConnectionState = callConnectionState;
 }
 internal CallConnectionStateChangedEvent(string serverCallId, string callConnectionId, CallConnectionState callConnectionState)
 {
     ServerCallId        = serverCallId;
     CallConnectionId    = callConnectionId;
     CallConnectionState = callConnectionState;
 }
示例#3
0
 public static CallConnectionStateChangedEvent CallConnectionStateChangedEvent(string serverCallId = default, string callConnectionId = default, CallConnectionState callConnectionState = default)
 {
     return(new CallConnectionStateChangedEvent(serverCallId, callConnectionId, callConnectionState));
 }