我想對網站進行HTTP調用。我只需要點擊該URL並且不想上傳或下載任何數據。什麼是最簡單快速的方法。C# - 如何進行HTTP調用
我想下面的代碼,但它的緩慢和後第二次重複的請求時,它只是進入超時59個secounds,比簡歷:
WebRequest webRequest = WebRequest.Create("http://ussbazesspre004:9002/DREADD?" + fileName);
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
webRequest.ContentLength = fileName.Length;
Stream os = webRequest.GetRequestStream();
os.Write(buffer, 0, buffer.Length);
os.Close();
使用Web客戶端更有效率?
WebClient web = new WebClient();
web.UploadString(address);
我使用的.NET版本3.5
「正在使用WebClient更高效嗎?」什麼阻止了你嘗試? –