TransactionFlowBindingElement.CanBuildChannelFactory<TChannel> Method

Definition

Returns a value that indicates whether the specified binding context can build a channel factory for producing channels of a specified type.

public:
generic <typename TChannel>
 override bool CanBuildChannelFactory(System::ServiceModel::Channels::BindingContext ^ context);
public override bool CanBuildChannelFactory<TChannel> (System.ServiceModel.Channels.BindingContext context);
override this.CanBuildChannelFactory : System.ServiceModel.Channels.BindingContext -> bool
Public Overrides Function CanBuildChannelFactory(Of TChannel) (context As BindingContext) As Boolean

Type Parameters

TChannel

The channel type.

Parameters

context
BindingContext

The BindingContext that should be used to determine if a channel factory can be built.

Returns

true if a channel factory for the specified type of channel can be built from context; otherwise, false.

Exceptions

context is null.

Remarks

You should call this method to check that the channel factory for channels of type TChannel can be built for the specified context, before attempting to actually build the factory. Note that BuildChannelFactory throws an exception if it cannot build a channel factory for the specified channel type.

Applies to