다음을 통해 공유


InstanceContext.IncomingChannels 속성

정의

서비스 인스턴스로 들어오는 세션 채널을 가져옵니다.

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

속성 값

ICollection<IChannel>

서비스 인스턴스로 들어오는 세션 채널이 포함된 ICollection<T> 형식의 IChannel입니다.

예외

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

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

예제

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

OperationContext operationContext = OperationContext.Current;
InstanceContext instanceContext = operationContext.InstanceContext;
ICollection<IChannel> incomingChannels = instanceContext.IncomingChannels;
Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/service");

// Create a ServiceHost for the CalculatorService type and provide the base address.
using (ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress))
{
    serviceHost.Open();
    OperationContext operationContext = OperationContext.Current;
    InstanceContext instanceContext = operationContext.InstanceContext;
    ICollection<IChannel> channels = instanceContext.IncomingChannels;
}

적용 대상