Binding.BuildChannelFactory<TChannel> Method (BindingParameterCollection)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Builds the channel factory stack on the client that creates a specified type of channel and that satisfies the features specified by a collection of binding parameters.
Namespace: System.ServiceModel.Channels
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Public Overridable Function BuildChannelFactory(Of TChannel) ( _
parameters As BindingParameterCollection _
) As IChannelFactory(Of TChannel)
public virtual IChannelFactory<TChannel> BuildChannelFactory<TChannel>(
BindingParameterCollection parameters
)
Type Parameters
- TChannel
The type of channel the channel factory produces.
Parameters
- parameters
Type: System.ServiceModel.Channels.BindingParameterCollection
The BindingParameterCollection that specifies requirements for the channel factory built.
Return Value
Type: System.ServiceModel.Channels.IChannelFactory<TChannel>
An IChannelFactory<TChannel> of type TChannel that satisfies the features specified by the collection.
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | Transport element is missing or out of order or scheme is invalid or the message version is not specified. |
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.
See Also