다음을 통해 공유


InstanceContext.OutgoingChannels 속성

정의

서비스 인스턴스에서 보내는 세션 채널을 가져옵니다.

public:
 property System::Collections::Generic::ICollection<System::ServiceModel::Channels::IChannel ^> ^ OutgoingChannels { System::Collections::Generic::ICollection<System::ServiceModel::Channels::IChannel ^> ^ get(); };
public System.Collections.Generic.ICollection<System.ServiceModel.Channels.IChannel> OutgoingChannels { get; }
member this.OutgoingChannels : System.Collections.Generic.ICollection<System.ServiceModel.Channels.IChannel>
Public ReadOnly Property OutgoingChannels As ICollection(Of IChannel)

속성 값

ICollection<IChannel>

서비스 인스턴스에서 보내는 세션 채널이 포함된 ICollection<T> 형식의 IChannel입니다.

예외

서비스 인스턴스가 닫혀 있으므로 사용할 수 없는 경우

서비스 인스턴스가 오류 상태인 경우

예제

다음 코드에서는 속성에 액세스 OutgoingChannels 하는 방법을 보여 줍니다.

OperationContext operationContext = OperationContext.Current;
InstanceContext instanceContext = operationContext.InstanceContext;
ICollection<IChannel> OutgoingChannels = instanceContext.OutgoingChannels;

적용 대상