コード例 #1
0
ファイル: Messages.cs プロジェクト: haydenrahn33/repo
 public ProcessStateChangeMessage(Globals.ProcessStates newState, string description, int portNo = -1)
 {
     this.PortNo       = portNo;
     this.ProcessState = newState;
     this.Description  = description;
 }
コード例 #2
0
ファイル: Messages.cs プロジェクト: jjmikalauskas/FinisarFAS1
 public ProcessStateChangeMessage(Globals.ProcessStates newState, string description)
 {
     this.ProcessState = newState;
     this.Description  = description;
 }