NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NetworkCredential Constructor (String, String, String)

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

[Visual Basic]
Overloads Public Sub New( _
   ByVal Name As String, _
   ByVal Password As String, _
   ByVal Domain As String _
)
[C#]
public NetworkCredential(
   string Name,
   string Password,
   string Domain
);
[C++]
public: NetworkCredential(
   String* Name,
   String* Password,
   String* Domain
);
[JScript]
public function NetworkCredential(
   Name : String,
   Password : String,
   Domain : String
);

Parameters

Name
The user name associated with the credentials.
Password
The password for the user name associated with the credentials.
Domain
The URI that these credentials are associated with.

See Also

NetworkCredential Class | NetworkCredential Members | System.Net Namespace | NetworkCredential Constructor Overload List