ClientCredentials Class
Enables the user to configure client and service credentials as well as service credential authentication settings for use on the client side of communication.
System.ServiceModel.Security::SecurityCredentialsManager
System.ServiceModel.Description::ClientCredentials
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The ClientCredentials type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | ClientCredentials() | Initializes a new instance of the ClientCredentials class. |
![]() ![]() | ClientCredentials(ClientCredentials) | This is a copy constructor. |
| Name | Description | |
|---|---|---|
![]() | ClientCertificate | Gets an object that you can use to provide the X.509 certificate that the client uses to authenticate to the service. |
![]() | HttpDigest | Gets the current HTTP Digest credential. |
![]() | IssuedToken | Use this property to specify the endpoint address and binding to use when contacting your local Security Token Service. This information is used when a service requires authentication using an issued token, but the policy of the service (represented as a binding on the client) does not explicitly specify how and where to obtain the issued token. |
![]() | Peer | Controls the credentials that a peer node uses to authenticate itself to other nodes in the mesh, as well as authentication settings that a peer node uses to authenticate other peer nodes. |
![]() | ServiceCertificate | Gets an object used to specify a service's X.509 certificate. |
![]() | SupportInteractive | Gets or sets a value that indicates whether the system is allowed to interactively prompt the user for credentials when necessary. For example, setting it to false might be desired in middle-tier scenarios. |
![]() ![]() | UserName | Gets a credential object that you can use to set the user name and password that the client uses to authenticate itself to the service. |
![]() | Windows | Gets an object used to control the Windows credential that the client uses to authenticate itself to the service. |
| Name | Description | |
|---|---|---|
![]() | ApplyClientBehavior | Applies the specified client behavior to the endpoint. |
![]() ![]() | Clone | Creates a new copy of this ClientCredentials instance. |
![]() ![]() | CloneCore | Creates a new copy of this ClientCredentials instance. |
![]() | CreateSecurityTokenManager | Creates a security token manager for this instance. This method is rarely called explicitly; it is primarily used in extensibility scenarios and is called by the system itself. (Overrides SecurityCredentialsManager::CreateSecurityTokenManager().) |
![]() ![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() ![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetInfoCardSecurityToken | Generates and returns a security token using the system and the specified policy chain and token serializer. |
![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEndpointBehavior::AddBindingParameters | Adds this instance of this class to a binding parameter collection. |
![]() ![]() | IEndpointBehavior::ApplyDispatchBehavior | Implements a modification or extension of the service across an endpoint. |
![]() ![]() | IEndpointBehavior::Validate | Reserved for future use. |
The ClientCredentials is accessed through the ClientCredentials property of the ClientBase<TChannel> class.
A ClientCredentials object is added to the Behaviors collection. The ClientCredentials property is a Façade (a well-known design pattern) over an entry in that collection. Many properties in this class return objects that consist mainly of properties. These objects can be used for configuration: once you get the object, you can use it to set properties by calling its members.
The following code sample shows how to override this class and implement your own custom client credentials that includes a custom security token manager.
Important |
|---|
It is important to note that the CreateSecurityTokenManager method is overridden to create a custom security token manager. The security token manager, derived from ClientCredentialsSecurityTokenManager. must return a custom security token provider, derived from [System.IdentityModel.Selectors.SecurityTokenProvider], to create the actual security token. If you do not follow this pattern for creating security tokens, your application will be at risk for security attacks, specifically elevation of privileges. This coding pattern ensures that the correct credentials are used when channel factories are cached. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

