The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ChannelFactory<TChannel>::CreateChannel Method (Binding^, EndpointAddress^)
.NET Framework (current version)
Creates a channel of a specified type that is used to send messages to a service endpoint that is configured with a specified binding.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: static TChannel CreateChannel( Binding^ binding, EndpointAddress^ endpointAddress )
Parameters
- binding
-
Type:
System.ServiceModel.Channels::Binding^
The Binding used to configure the endpoint.
- endpointAddress
-
Type:
System.ServiceModel::EndpointAddress^
The EndpointAddress that provides the location of the service.
| Exception | Condition |
|---|---|
| InvalidOperationException | The ChannelFactory has duplex operations it does not support. |
EndpointAddress address = new EndpointAddress("http://localhost:8000/ChannelApp"); IRequestChannel channel = ChannelFactory<IRequestChannel>.CreateChannel(binding, address); channel.Open();
.NET Framework
Available since 3.0
Available since 3.0
Show: