InstanceContext.OutgoingChannels Property

Definition

Gets the sessionful channels that are outgoing from the service instance.

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)

Property Value

The ICollection<T> of type IChannel that contains the sessionful channels outgoing from the service instance.

Exceptions

The service instance is closed and cannot be used.

The service instance is in a faulted state.

Examples

The following code illustrates how to access the OutgoingChannels property:

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

Applies to