Example #1
0
 public SServer(SNamePort ClientBindNamePortPub_, SCapacity Capacity_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
     Capacity = Capacity_;
 }
Example #2
0
 public void Set(SCapacity Obj_)
 {
     ClientCnt = Obj_.ClientCnt;
     ServerCnt = Obj_.ServerCnt;
 }
Example #3
0
 public SServer(SServer Obj_)
 {
     ClientBindNamePortPub = Obj_.ClientBindNamePortPub;
     Capacity = Obj_.Capacity;
 }
Example #4
0
 public SCapacity(SCapacity Obj_)
 {
     ClientCnt = Obj_.ClientCnt;
     ServerCnt = Obj_.ServerCnt;
 }