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
- userName
Type: System. . :: . .String
The user name associated with the credentials.
- password
Type: System. . :: . .String
The password for the user name associated with the credentials.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.