NetworkCredential Class
Assembly: System (in system.dll)
The NetworkCredential class is a base class that supplies credentials in password-based authentication schemes such as basic, digest, NTLM, and Kerberos. Classes that implement the ICredentials interface, such as the CredentialCache class, return NetworkCredential objects.
This class does not support public key-based authentication methods such as Secure Sockets Layer (SSL) client authentication.
The following code example associates a NetworkCredential object with a set of Uniform Resource Identifiers (URIs) in a CredentialCache. It then passes the CredentialCache to a WebRequest object, which uses it to authenticate requests to an Internet server.
Dim myCred As New NetworkCredential(SecurelyStoredUserName,SecurelyStoredPassword,SecurelyStoredDomain ) Dim myCache As New CredentialCache() myCache.Add(New Uri("www.contoso.com"), "Basic", myCred) myCache.Add(New Uri("app.contoso.com"), "Basic", myCred) Dim wr As WebRequest = WebRequest.Create("www.contoso.com") wr.Credentials = myCache
NetworkCredential myCred =new NetworkCredential(securelyStoredUserName,
securelyStoredPassword,securelyStoredDomain);
CredentialCache myCache = new CredentialCache();
myCache.Add(new Uri("www.contoso.com"), "Basic", myCred);
myCache.Add(new Uri("app.contoso.com"), "Basic", myCred);
WebRequest wr = WebRequest.Create("www.contoso.com");
wr.set_Credentials(myCache);
var myCred : NetworkCredential = new NetworkCredential( SecurelyStoredUserName, SecurelyStoredPassword, SecurelyStoredDomain ) var myCache : CredentialCache = new CredentialCache() myCache.Add(new Uri("www.contoso.com"), "Basic", myCred) myCache.Add(new Uri("app.contoso.com"), "Basic", myCred) var wr : WebRequest = WebRequest.Create("www.contoso.com") wr.Credentials = myCache
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, 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.