IssuedTokenClientCredential.LocalIssuerChannelBehaviors 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
로컬 발급자 채널 동작의 컬렉션을 가져옵니다.
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<TItem>의 IEndpointBehavior입니다.
예제
이 코드에서는 이 속성을 설정하는 방법을 보여 줍니다.
SynchronousReceiveBehavior myEndpointBehavior = new SynchronousReceiveBehavior();
itcc.LocalIssuerChannelBehaviors.Add(myEndpointBehavior);
설명
이 KeyedByTypeCollection<TItem> 애플리케이션이 로컬 보안 토큰 서비스에서 발급 된 토큰을 가져오기 위해 WCF에서 만든 채널에서 사용 하는 엔드포인트 동작입니다.