WindowsClientCredential.ClientCredential Property

Definition

Gets or sets the Windows client credential.

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 for the client.

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.Windows.ClientCredential.UserName = "test";
        client.ClientCredentials.Windows.ClientCredential.Password = "password";
    }
}

This 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.Windows.ClientCredential = new NetworkCredential("test user", "password");
    }
}

Remarks

By default, the current thread's credentials are used by WCF for doing Windows SSPI Negotiate authentication.

To authenticate the client as another principal, change the properties of the instance of the NetworkCredential class that is returned by this property. Alternatively, create a new instance of the NetworkCredential class and assign it to this property.

Applies to