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!

SingleCredential Constructor (String, String, String)

Returns a SingleCredential object that is associated with the supplied host, realm, and authentication type.

[Visual Basic]
Overloads Public Sub New( _
   ByVal name As String, _
   ByVal password As String, _
   ByVal domain As String _
)
[C#]
public SingleCredential(
   string name,
   string password,
   string domain
);
[C++]
public: SingleCredential(
   String* name,
   String* password,
   String* domain
);
[JScript]
public function SingleCredential(
   name : String,
   password : String,
   domain : String
);

Parameters

name
The username associated with these credentials.
password
The password for the username associated with these credentials.
domain
The machine that verified the credentials.

Return Value

A SingleCredential instance.

Remarks

[To be provided]

See Also

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