コード例 #1
0
 public CommunicationStateChangedEventArgs(ICommunicationStateModel model)
 {
     this.CommunicationStateModel = model;
 }
コード例 #2
0
 private void WhenCommunicationStateAcknowledged(object sender, EventArgs e)
 {
     this.CommunicationStateModel = new LoadedCommunicationStateModel();
 }
コード例 #3
0
 protected void OnCommunicationStateChanged(ICommunicationStateModel model)
 {
     this.OnCommunicationStateChanged(new CommunicationStateChangedEventArgs(model));
 }