HttpDigestClientCredential.ClientCredential Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the network credential to be used for digest-based authentication.
public:
property System::Net::NetworkCredential ^ ClientCredential { System::Net::NetworkCredential ^ get(); void set(System::Net::NetworkCredential ^ value); };
public System.Net.NetworkCredential ClientCredential { get; set; }
member this.ClientCredential : System.Net.NetworkCredential with get, set
Public Property ClientCredential As NetworkCredential
Property Value
The NetworkCredential to be used for digest-based authentication.
Examples
The following code examples show how to authenticate the client as a different principal.
This is how to change the properties of the instance of the NetworkCredential class that is returned by this property.
private void Snippet2()
{
using (CalculatorClient client = new CalculatorClient())
{
client.ClientCredentials.HttpDigest.ClientCredential.UserName = "test";
client.ClientCredentials.HttpDigest.ClientCredential.Password = "password";
}
}
And here is how to create a new instance of the NetworkCredential class and assign it to this property.
private void Snippet3()
{
using (CalculatorClient client = new CalculatorClient())
{
client.ClientCredentials.HttpDigest.ClientCredential = new NetworkCredential("test user", "password");
}
}
Remarks
If not specified, the default thread credential will be used.