Partilhar via


InstanceContext.OutgoingChannels Propriedade

Definição

Obtém os canais de sessão de saída da instância de serviço.

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)

Valor da propriedade

ICollection<IChannel>

O ICollection<T> tipo IChannel que contém os canais com sessão de saída da instância de serviço.

Exceções

A instância de serviço foi fechada e não pode ser usada.

A instância de serviço está em estado de falha.

Exemplos

O código a seguir ilustra como acessar a OutgoingChannels propriedade:

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

Aplica-se a