IssuedTokenClientCredential.LocalIssuerChannelBehaviors 属性

定义

获取本地颁发者通道行为的集合。

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)

属性值

KeyedByTypeCollection<IEndpointBehavior>

KeyedByTypeCollection<TItem> 的一个 IEndpointBehavior

示例

此代码演示如何设置此属性。

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

注解

这是 KeyedByTypeCollection<TItem> 应用程序在 WCF 创建的通道中用于从本地安全令牌服务获取颁发的令牌的终结点行为。

适用于