BindingElement.CanBuildChannelFactory<TChannel> Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns a value that indicates whether the binding element can build a channel factory for a specific type of channel.

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

Syntax

'Declaration
Public Overridable Function CanBuildChannelFactory(Of TChannel) ( _
    context As BindingContext _
) As Boolean
public virtual bool CanBuildChannelFactory<TChannel>(
    BindingContext context
)

Type Parameters

  • TChannel
    The type of channel the channel factory produces.

Parameters

Return Value

Type: System.Boolean
true if the IChannelFactory<TChannel> of type TChannel can be built by the binding element; otherwise, false.

Exceptions

Exception Condition
ArgumentNullException

context is nulla null reference (Nothing in Visual Basic).

Remarks

Use this method if you want to check that the channel factory for channels of type TChannel can be build for the context provided before attempting to build the factory. Alternatively, build the channel factory by calling BuildChannelFactory<TChannel> and catch the exception generated if it cannot be built.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.