Пример #1
0
 public override void Push(CStream Stream_)
 {
     Stream_.Pop(ref ID);
     Stream_.Pop(ref PW);
     Stream_.Pop(ref ServerNo);
     {
         Servers.Clear();
         Int32 Cnt = 0;
         Stream_.Pop(ref Cnt);
         for (Int32 i = 0; i < Cnt; ++i)
         {
             SNamePort Value = new SNamePort();
             Stream_.Pop(Value);
             Servers.Add(Value);
         }
     }
     Stream_.Pop(ref LocalDirectory);
     Stream_.Pop(ref RemoteDirectory);
     {
         Commands.Clear();
         Int32 Cnt = 0;
         Stream_.Pop(ref Cnt);
         for (Int32 i = 0; i < Cnt; ++i)
         {
             SCommand Value = new SCommand();
             Stream_.Pop(Value);
             Commands.Add(Value);
         }
     }
 }
Пример #2
0
 public SOption(String DataPath_, String DataFileName_, SNamePort MasterNamePort_, String ID_, String PW_)
 {
     DataPath       = DataPath_;
     DataFileName   = DataFileName_;
     MasterNamePort = MasterNamePort_;
     ID             = ID_;
     PW             = PW_;
 }
Пример #3
0
 public SOption(String ServerName_, String DataPath_, String DataFileName_, SNamePort MasterNamePort_, String BalanceDataPath_)
 {
     ServerName      = ServerName_;
     DataPath        = DataPath_;
     DataFileName    = DataFileName_;
     MasterNamePort  = MasterNamePort_;
     BalanceDataPath = BalanceDataPath_;
 }
Пример #4
0
 public SOption(SOption Obj_)
 {
     ServerName      = Obj_.ServerName;
     DataPath        = Obj_.DataPath;
     DataFileName    = Obj_.DataFileName;
     MasterNamePort  = Obj_.MasterNamePort;
     BalanceDataPath = Obj_.BalanceDataPath;
 }
Пример #5
0
 public SOption(SOption Obj_)
 {
     DataPath       = Obj_.DataPath;
     DataFileName   = Obj_.DataFileName;
     MasterNamePort = Obj_.MasterNamePort;
     ID             = Obj_.ID;
     PW             = Obj_.PW;
 }
Пример #6
0
 public CNamePort(SNamePort NamePort_) :
     base(NamePort_)
 {
 }
Пример #7
0
 public SSaServerOn(SNamePort ClientBindNamePortPub_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
 }
Пример #8
0
 public void Set(SNamePort Obj_)
 {
     Name = Obj_.Name;
     Port = Obj_.Port;
 }
Пример #9
0
 public SDuChildOn(SServer Super_, TSessionCode SessionCode_, SNamePort ChildBindNamePort_) : base(Super_)
 {
     SessionCode       = SessionCode_;
     ChildBindNamePort = ChildBindNamePort_;
 }
Пример #10
0
 public SSaServerOn(SNamePort ClientBindNamePortPub_, Int32 ClientCnt_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
     ClientCnt             = ClientCnt_;
 }
Пример #11
0
 public SAcServerToConnect(SNamePort ClientBindNamePortPub_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
 }
Пример #12
0
 public SCsConnect(SNamePort PrevClientBindNamePortPub_)
 {
     PrevClientBindNamePortPub = PrevClientBindNamePortPub_;
 }
Пример #13
0
 public SCsConnect(SCsConnect Obj_)
 {
     PrevClientBindNamePortPub = Obj_.PrevClientBindNamePortPub;
 }
Пример #14
0
 public SUdNewParent(SNamePort ChildBindNamePort_, TSessionCode SessionCode_)
 {
     ChildBindNamePort = ChildBindNamePort_;
     SessionCode       = SessionCode_;
 }
Пример #15
0
 public SUdNewParent(SUdNewParent Obj_)
 {
     ChildBindNamePort = Obj_.ChildBindNamePort;
     SessionCode       = Obj_.SessionCode;
 }
Пример #16
0
 public SUdNewChild(SNamePort ClientBindNamePortPub_, TSessionCode SessionCode_, SKey NewChildKey_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
     SessionCode           = SessionCode_;
     NewChildKey           = NewChildKey_;
 }
Пример #17
0
 public SUdNewChild(SUdNewChild Obj_)
 {
     ClientBindNamePortPub = Obj_.ClientBindNamePortPub;
     SessionCode           = Obj_.SessionCode;
     NewChildKey           = Obj_.NewChildKey;
 }
Пример #18
0
 public SAcServerToConnect(SAcServerToConnect Obj_)
 {
     ClientBindNamePortPub = Obj_.ClientBindNamePortPub;
 }
Пример #19
0
 public SScNewParent(SScNewParent Obj_)
 {
     ClientBindNamePortPub = Obj_.ClientBindNamePortPub;
 }
Пример #20
0
 public SSaServerOn(SSaServerOn Obj_)
 {
     ClientBindNamePortPub = Obj_.ClientBindNamePortPub;
     ClientCnt             = Obj_.ClientCnt;
 }
Пример #21
0
 public SServer(SNamePort ClientBindNamePortPub_, SCapacity Capacity_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
     Capacity = Capacity_;
 }
Пример #22
0
 public SScNewParent(SNamePort ClientBindNamePortPub_)
 {
     ClientBindNamePortPub = ClientBindNamePortPub_;
 }
Пример #23
0
 public SDuChildOn(SDuChildOn Obj_) : base(Obj_)
 {
     SessionCode       = Obj_.SessionCode;
     ChildBindNamePort = Obj_.ChildBindNamePort;
 }
Пример #24
0
 public SNamePort(SNamePort Obj_)
 {
     Name = Obj_.Name;
     Port = Obj_.Port;
 }
Пример #25
0
 public SServer(SServer Obj_)
 {
     ClientBindNamePortPub = Obj_.ClientBindNamePortPub;
     Capacity = Obj_.Capacity;
 }