共用方式為


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 建立的通道中用來從本機安全性權杖服務取得已發行權杖的端點行為。

適用於