2012-02-24 51 views
0

我有這樣的wget要求:C#讓wget的要求

wget --http-user="user" --http-passwd="password" 
www.example.com 

在HTTP請求中我寫的URL地址,但我不知道放在哪裏登錄見識。 謝謝

+0

[使用HTTP驗證與C#WebRequest]可能重複(http://stackoverflow.com/questions/707888/using-http-authentication-with-a-c-sharp-webrequest) – Sjoerd 2012-02-24 12:45:41

回答

5

如何:

string page; 
using(var client = new WebClient()) { 
    client.Credentials = new NetworkCredential("user", "password"); 
    page = client.DownloadString("http://www.example.com/"); 
}