IssuedTokenClientCredential.LocalIssuerChannelBehaviors Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.