Aracılığıyla paylaş


InstanceContext.OutgoingChannels Özellik

Tanım

Hizmet örneğinden giden oturumlu kanalları alır.

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)

Özellik Değeri

ICollection<IChannel>

ICollection<T> Hizmet örneğinden giden oturumlu kanalları içeren türüIChannel.

Özel durumlar

Hizmet örneği kapatılır ve kullanılamaz.

Hizmet örneği hatalı durumda.

Örnekler

Aşağıdaki kod özelliğine nasıl eriş yapılacağını OutgoingChannels gösterir:

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

Şunlara uygulanır