WebClient.UseDefaultCredentials Property
Assembly: System (in system.dll)
/** @property */ public boolean get_UseDefaultCredentials () /** @property */ public void set_UseDefaultCredentials (boolean value)
public function get UseDefaultCredentials () : boolean public function set UseDefaultCredentials (value : boolean)
Property Value
true if the default credentials are used; otherwise false. The default value is false.Set this property to true when requests made by this WebClient object should, if requested by the server, be authenticated using the default credentials of the currently logged on user. For client applications, this is the desired behavior in most scenarios. For middle tier applications, such as ASP.NET applications, instead of using this property, you would typically set the Credentials property to the credentials of the client on whose behalf the request is made.
The following code example demonstrates setting this property.
// Sample call: UploadFileInBackground3("http://www.contoso.com/fileUpload.aspx", "data.txt") public static void UploadFileInBackground3 (string address, string fileName) { WebClient client = new WebClient (); Uri uri = new Uri(address); client.UseDefaultCredentials = true; client.UploadFileCompleted += new UploadFileCompletedEventHandler (UploadFileCallback2); client.UploadFileAsync (uri, fileName); Console.WriteLine ("File upload started."); }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.