This topic has not yet been rated - Rate this topic

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.Object
  System.ServiceModel.Security.SecurityCredentialsManager
    System.ServiceModel.Description.ClientCredentials

Namespace:  System.ServiceModel.Description
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
public class ClientCredentials : SecurityCredentialsManager, 
	IEndpointBehavior

The ClientCredentials type exposes the following members.

  Name Description
Public method Supported by Portable Class Library ClientCredentials() Initializes a new instance of the ClientCredentials class.
Protected method Supported by Portable Class Library ClientCredentials(ClientCredentials) This is a copy constructor.
Top
  Name Description
Public property ClientCertificate Gets an object that you can use to provide the X.509 certificate that the client uses to authenticate to the service.
Public property HttpDigest Gets the current HTTP Digest credential.
Public property 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.
Public property 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.
Public property ServiceCertificate Gets an object used to specify a service's X.509 certificate.
Public property 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.
Public property Supported by Portable Class Library 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.
Public property Windows Gets an object used to control the Windows credential that the client uses to authenticate itself to the service.
Top
  Name Description
Public method ApplyClientBehavior Applies the specified client behavior to the endpoint.
Public method Supported by Portable Class Library Clone Creates a new copy of this ClientCredentials instance.
Protected method Supported by Portable Class Library CloneCore Creates a new copy of this ClientCredentials instance.
Public method 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().)
Public method Supported by Portable Class Library Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by Portable Class Library Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by Portable Class Library GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Protected method GetInfoCardSecurityToken Generates and returns a security token using the system and the specified policy chain and token serializer.
Public method Supported by Portable Class Library GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Supported by Portable Class Library MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by Portable Class Library ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Explicit interface implemetation Private method IEndpointBehavior.AddBindingParameters Adds this instance of this class to a binding parameter collection.
Explicit interface implemetation Private method IEndpointBehavior.ApplyDispatchBehavior Implements a modification or extension of the service across an endpoint.
Explicit interface implemetation Private method IEndpointBehavior.Validate Reserved for future use.
Top

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 note 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.


public class MyClientCredentials : ClientCredentials
{
    string creditCardNumber;

    public MyClientCredentials()
    {
        // Perform client credentials initialization.
    }

    protected MyClientCredentials(MyClientCredentials other)
        : base(other)
    {
        // Clone fields defined in this class.
        this.creditCardNumber = other.creditCardNumber;
    }

    public string CreditCardNumber
    {
        get
        {
            return this.creditCardNumber;
        }
        set
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }
            this.creditCardNumber = value;
        }
    }

    public override SecurityTokenManager CreateSecurityTokenManager()
    {
        // Return your implementation of the SecurityTokenManager.
        return new MyClientCredentialsSecurityTokenManager(this);
    }

    protected override ClientCredentials CloneCore()
    {
        // Implement the cloning functionality.
        return new MyClientCredentials(this);
    }
}


.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

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.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ