The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ClientCredentials Constructor
.NET Framework (current version)
Initializes a new instance of the ClientCredentials class.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | ClientCredentials() | Initializes a new instance of the ClientCredentials class. |
![]() | ClientCredentials(ClientCredentials^) | This is a copy constructor. |
The most common way to use this class is to access its properties from the client object and not to instantiate it directly. The following code shows how to do this.
WSHttpBinding b = new WSHttpBinding(); EndpointAddress ea = new EndpointAddress("http://localhost/Calculator"); CalculatorClient client = new CalculatorClient(b, ea); IssuedTokenClientCredential itcc = client.ClientCredentials.IssuedToken; itcc.LocalIssuerAddress = new EndpointAddress("http://fabrikam.com/sts");
Show:

