2009-10-25 53 views
0

在我的應用程序中,我使用下面的代碼上傳文件到服務器。字節上傳到服務器:

response = (HttpWebResponse)request.GetResponse(); 

其中​​3210

有沒有辦法讓上傳到服務器的字節數。

在此先感謝

回答

0

你爲什麼不能用WebClient

E.g嘗試:

WebClient wc = new WebClient(); 
byte[] s = wc.UploadFile("string address", "string fileName"); 
+0

需要webRequest和webResponse對象而不是WebClient具有更大的靈活性。 – Anees 2009-10-25 08:34:31

1

是HttpWebResponse.ContentLength合適?