Share via


NetworkCredential Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Provides credentials for password-based authentication schemes such as basic, digest, NTLM, and Kerberos authentication.

Inheritance Hierarchy

System. . :: . .Object
  System.Net..::..NetworkCredential

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Class NetworkCredential
public class NetworkCredential
public ref class NetworkCredential
type NetworkCredential =  class end
public class NetworkCredential

The NetworkCredential type exposes the following members.

Constructors

  Name Description
Public method NetworkCredential() () () () Initializes a new instance of the NetworkCredential class.
Public method NetworkCredential(String, String) Initializes a new instance of the NetworkCredential class with the specified user name and password.
Public method NetworkCredential(String, String, AuthenticationType) Initializes a new instance of the NetworkCredential class, with the specified user name, password, and authentication type.

Top

Properties

  Name Description
Public property AuthenticationType Gets or sets the type of the authentication.
Public property Password Gets or sets the password for the user name associated with the credentials.
Public property UserName Gets or sets the user name associated with the credentials.

Top

Methods

  Name Description
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Remarks

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.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Net Namespace