次の方法で共有


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 によって作成されたチャネルでアプリケーションが使用するエンドポイント動作の 1 つです。

適用対象