Binding.BuildChannelFactory<TChannel> Method (array<Object[])
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 an object array.
Namespace: System.ServiceModel.Channels
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Public Function BuildChannelFactory(Of TChannel) ( _
ParamArray parameters As Object() _
) As IChannelFactory(Of TChannel)
public IChannelFactory<TChannel> BuildChannelFactory<TChannel>(
params Object[] parameters
)
Type Parameters
- TChannel
The type of channel the channel factory produces.
Parameters
- parameters
Type: array<System.Object[]
The object array that specifies requirements for the channel factory that is 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