コード例 #1
0
ファイル: PhoneCall.cs プロジェクト: HNeukermans/Hallo
 public PhoneCall(SoftPhone softPhone, bool isIncoming, ICommand<IInternalPhoneCall> startCommand, ICommand stopCommand)
 {
     _softPhone = softPhone;
     _isIncoming = isIncoming;
     _startCommand = startCommand;
     _stopCommand = stopCommand;
 }
コード例 #2
0
ファイル: PhoneCall.cs プロジェクト: HNeukermans/Hallo
 public PhoneCall(SoftPhone softPhone, bool isIncoming, SipUri from, ICommand acceptCommand, ICommand rejectCommand, ICommand stopCommand)
 {
     _softPhone = softPhone;
     _isIncoming = isIncoming;
     _acceptCommand = acceptCommand;
     _rejectCommand = rejectCommand;
     _stopCommand = stopCommand;
 }