Name

NetworkCredential

Synopsis

This class is an implementation of ICredentials for authentication schemes that use passwords, such as basic and digest authentication, NTLM, and Kerberos. See CredentialCache for more details.

public class NetworkCredential : ICredentials {
// Public Constructors
   public method NetworkCredential();  
   public method NetworkCredential(string userName, 
        string password);  
   public method NetworkCredential(string userName, 
        string password, string domain);  
// Public Instance Properties
   public field string Domain{set; get; } 
   public field string Password{set; get; } 
   public field string UserName{set; get; } 
// Public Instance Methods
   public method NetworkCredential GetCredential(Uri uri,        // implements ICredentials
        string authType);  
}

Returned By

CredentialCache.GetCredential(), ICredentials.GetCredential()

Passed To

CredentialCache.Add()

Get C# in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.