IssuedTokenClientCredential.LocalIssuerChannelBehaviors Property

Definition

Gets a collection of local issuer channel behaviors.

public:
 property System::Collections::Generic::KeyedByTypeCollection<System::ServiceModel::Description::IEndpointBehavior ^> ^ LocalIssuerChannelBehaviors { System::Collections::Generic::KeyedByTypeCollection<System::ServiceModel::Description::IEndpointBehavior ^> ^ get(); };
public System.Collections.Generic.KeyedByTypeCollection<System.ServiceModel.Description.IEndpointBehavior> LocalIssuerChannelBehaviors { get; }
member this.LocalIssuerChannelBehaviors : System.Collections.Generic.KeyedByTypeCollection<System.ServiceModel.Description.IEndpointBehavior>
Public ReadOnly Property LocalIssuerChannelBehaviors As KeyedByTypeCollection(Of IEndpointBehavior)

Property Value

A KeyedByTypeCollection<TItem> of IEndpointBehaviors.

Examples

This code shows how to set this property.

SynchronousReceiveBehavior myEndpointBehavior = new SynchronousReceiveBehavior();
itcc.LocalIssuerChannelBehaviors.Add(myEndpointBehavior);

Remarks

This is a KeyedByTypeCollection<TItem> of the endpoint behaviors that the application uses in the channels created by WCF to get the issued tokens from the local Security Token Service.

Applies to