SslStreamSecurityBindingElement.BuildChannelFactory<TChannel> Method

Definition

Creates a channel factory of a specified type.

public:
generic <typename TChannel>
 override System::ServiceModel::Channels::IChannelFactory<TChannel> ^ BuildChannelFactory(System::ServiceModel::Channels::BindingContext ^ context);
public override System.ServiceModel.Channels.IChannelFactory<TChannel> BuildChannelFactory<TChannel> (System.ServiceModel.Channels.BindingContext context);
override this.BuildChannelFactory : System.ServiceModel.Channels.BindingContext -> System.ServiceModel.Channels.IChannelFactory<'Channel>
Public Overrides Function BuildChannelFactory(Of TChannel) (context As BindingContext) As IChannelFactory(Of TChannel)

Type Parameters

TChannel

Type of channel factory.

Parameters

Returns

An IChannelFactory object that represents the channel factory of type TChannel.

Exceptions

context is null.

Remarks

This method creates a channel factory, which is used to create a channel that processes outgoing messages for this binding.

Applies to