示例#1
0
文件: Ptcp.cs 项目: sea2017sea/MyWork
 public Ptcp(PtcpState statusFlag, T t)
 {
     this.DoFlag      = statusFlag;
     this.ReturnValue = t;
 }
示例#2
0
文件: Ptcp.cs 项目: sea2017sea/MyWork
 public Ptcp(PtcpState statusFlag, string message, T t)
 {
     this.DoFlag      = statusFlag;
     this.DoResult    = message;
     this.ReturnValue = t;
 }
示例#3
0
文件: Ptcp.cs 项目: sea2017sea/MyWork
 public Ptcp(PtcpState statusFlag, string message)
 {
     this.DoFlag   = statusFlag;
     this.DoResult = message;
 }