Exemplo n.º 1
0
 public S_FileTransferSend(FileClients client, FileTransfer info, byte[] bytes, int Index)
     : base(client)
 {
     this.info  = info;
     this.bytes = bytes;
     this.Index = Index;
 }
Exemplo n.º 2
0
 public ReceiveBasePacket(FileClients client, byte[] packet)
 {
     _Client = client;
     _Packet = packet;
     _Offset = 1;
     Read();
 }
Exemplo n.º 3
0
 public S_FileTransferSend(FileClients client, FileTransfer info, byte[] bytes, int Index)
     : base(client)
 {
     this.info = info;
     this.bytes = bytes;
     this.Index = Index;
 }
Exemplo n.º 4
0
 public ReceiveBasePacket(FileClients client, byte[] packet)
 {
     _Client = client;
     _Packet = packet;
     _Offset = 1;
     Read();
 }
Exemplo n.º 5
0
 public R_FileTransferBegin(FileClients client, byte[] packet)
     : base(client, packet)
 {
 }
Exemplo n.º 6
0
 public SendBasePacket(FileClients client)
 {
     vStream = new MemoryStream();
     vClient = client;
 }
Exemplo n.º 7
0
 public R_FileTransferBegin(FileClients client, byte[] packet)
     : base(client, packet)
 {
 }
Exemplo n.º 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;
 }
Exemplo n.º 10
0
 public SendBasePacket(FileClients client)
 {
     vStream = new MemoryStream();
     vClient = client;
 }
Exemplo n.º 11
0
 public S_FileTransferSendBegin(FileClients client, FileTransfer info, SendType type)
     : base(client)
 {
     this.info = info;
     this.type = type;
 }
Exemplo n.º 12
0
 public S_RemoteIP(FileClients client)
     : base(client)
 {
 }
Exemplo n.º 13
0
 public S_RemoteControlScreen(FileClients client, byte enable)
     : base(client)
 {
     this.enable = enable;
 }
Exemplo n.º 14
0
 public S_RemoteControlScreen(FileClients client, byte enable)
      : base(client)
  {
     this.enable = enable;
  }
Exemplo n.º 15
0
 public S_FileTransferSendBegin(FileClients client, FileTransfer info, SendType type)
     : base(client)
 {
     this.info = info;
     this.type = type;
 }