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;

Применяется к