TcpTransportBindingElement::BuildChannelListener<TChannel> Method (BindingContext^)

 

Creates a channel listener of the specified type.

Namespace:   System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
generic<typename TChannel>
where TChannel : ref class, IChannel
virtual IChannelListener<TChannel>^ BuildChannelListener(
	BindingContext^ context
) override

Parameters

context
Type: System.ServiceModel.Channels::BindingContext^

BindingContext members that describe bindings, behaviors, contracts, and other information required to create the channel factory.

Return Value

Type: System.ServiceModel.Channels::IChannelListener<TChannel>^

Returns a channel listener of the specified type.

Type Parameters

TChannel

Type of channel listener.

Exception Condition
ArgumentNullException

context cannot be null.

ArgumentException

An invalid argument was passed.

This method can be used to create a channel listener for receiving messages based on the configuration of the TCP binding element.

The following example shows how to return a channel listener of the specified type.

IChannelListener<IOutputChannel> listener =
    binding.BuildChannelListener<IOutputChannel>(bContext);

.NET Framework
Available since 3.0
Return to top
Show: