Share via


NetworkCredential Constructor (String, String)

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

Initializes a new instance of the NetworkCredential class with the specified user name and password.

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

Syntax

'Declaration
Public Sub New ( _
    userName As String, _
    password As String _
)
public NetworkCredential(
    string userName,
    string password
)
public:
NetworkCredential(
    String^ userName, 
    String^ password
)
new : 
        userName:string * 
        password:string -> NetworkCredential
public function NetworkCredential(
    userName : String, 
    password : String
)

Parameters

Remarks

The constructor initializes a NetworkCredential object with the UserName property set to userName and the Password property set to password.

Examples

The following code example creates a NetworkCredential object using the specified user name and password.

.NET Framework Security

See Also

Reference

NetworkCredential Class

NetworkCredential Overload

System.Net Namespace