Beispiel #1
0
 public Ptcp(PtcpState statusFlag, T t)
 {
     this.DoFlag      = statusFlag;
     this.ReturnValue = t;
 }
Beispiel #2
0
 public Ptcp(PtcpState statusFlag, string message, T t)
 {
     this.DoFlag      = statusFlag;
     this.DoResult    = message;
     this.ReturnValue = t;
 }
Beispiel #3
0
 public Ptcp(PtcpState statusFlag, string message)
 {
     this.DoFlag   = statusFlag;
     this.DoResult = message;
 }