Example #1
0
 public S_FileTransferSend(FileClients client, FileTransfer info, byte[] bytes, int Index)
     : base(client)
 {
     this.info  = info;
     this.bytes = bytes;
     this.Index = Index;
 }
Example #2
0
 public ReceiveBasePacket(FileClients client, byte[] packet)
 {
     _Client = client;
     _Packet = packet;
     _Offset = 1;
     Read();
 }
Example #3
0
 public S_FileTransferSend(FileClients client, FileTransfer info, byte[] bytes, int Index)
     : base(client)
 {
     this.info = info;
     this.bytes = bytes;
     this.Index = Index;
 }
Example #4
0
 public ReceiveBasePacket(FileClients client, byte[] packet)
 {
     _Client = client;
     _Packet = packet;
     _Offset = 1;
     Read();
 }
Example #5
0
 public R_FileTransferBegin(FileClients client, byte[] packet)
     : base(client, packet)
 {
 }
Example #6
0
 public SendBasePacket(FileClients client)
 {
     vStream = new MemoryStream();
     vClient = client;
 }
Example #7
0
 public R_FileTransferBegin(FileClients client, byte[] packet)
     : base(client, packet)
 {
 }
Example #8
0
 public S_FileTransferSendComplete(FileClients client, FileTransfer info)
     : base(client)
 {
     this.info = info;
 }
 public S_FileTransferSendComplete(FileClients client, FileTransfer info)
     : base(client)
 {
     this.info = info;
 }
Example #10
0
 public SendBasePacket(FileClients client)
 {
     vStream = new MemoryStream();
     vClient = client;
 }
 public S_FileTransferSendBegin(FileClients client, FileTransfer info, SendType type)
     : base(client)
 {
     this.info = info;
     this.type = type;
 }
Example #12
0
 public S_RemoteIP(FileClients client)
     : base(client)
 {
 }
Example #13
0
 public S_RemoteControlScreen(FileClients client, byte enable)
     : base(client)
 {
     this.enable = enable;
 }
 public S_RemoteControlScreen(FileClients client, byte enable)
      : base(client)
  {
     this.enable = enable;
  }
Example #15
0
 public S_FileTransferSendBegin(FileClients client, FileTransfer info, SendType type)
     : base(client)
 {
     this.info = info;
     this.type = type;
 }