Ejemplo n.º 1
0
 public UCRecFile(TcpClient client, long filelength, string filename)
     : this()
 {
     Client   = client;
     filelen  = filelength;
     FileName = filename;
     this.lblFilename.Text = filename;
     Task.Run(() =>
     {
         tcp.Rec(this.Client, this.FileName, this.filelen);
     });
 }