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); }); }