<issuerChannelBehaviors> Element

Contains a collection of Windows Communication Foundation (WCF) client endpoint behaviors (defined in the configuration) to be used when communicating with the specified Service Token Services. The defined behaviors cannot include any <clientCredentials> elements.

<configuration>
  <system.serviceModel>
    <behaviors>
      <endpointBehaviors>
        <behavior>
          <clientCredentials>
            <issuedToken>
              <issuerChannelBehaviors>

Syntax

<issuerChannelBehaviors>
  <add behaviorConfiguration="string"
       issuerAddress="string" />
</issuerChannelBehaviors>

Attributes and elements

The following sections describe attributes, child elements, and parent elements.

Attributes

None.

Child elements

Element Description
<add> Adds a behavior to the collection.

Parent elements

Element Description
<issuedToken> Specifies a custom token used to authenticate a client to a service.

Remarks

Use this element when any behaviors (other than behaviors that include <clientCredentials> elements) must be used to communicate with a service. For example, if a <dataContractSerializer> behavior element must be included.

See also