我用winform给webserver发送了一个文件,我想让服务器在接收完文件后给客户端发送一个信息

用c#做一个wimform客户端用webclient.uploadfile给服务器发送一个文件,在服务器接收完之后返回一个信息给客户端,首先我需要知道怎么给服务器发送一段字符串,比如“ok”,在服务器收到OK之后表示文件接收完了,那么会给客户端返回一个信息,比如“over”,然后客户端接收到这个信息。并用messagebox显示出来“over”关键问题就是怎么让服务器给客户端发送信息

byte[] responseArray = myWebClient.UploadFile(uriString,fileName);
// Decode and display the response.
Console.WriteLine("\nResponse Received.The contents of the file uploaded are:\n{0}",
System.Text.Encoding.ASCII.GetString(responseArray));
上传完成它应该会返回成功的信息的吧,这样不是可以判断了