DuplexChannelFactory<TChannel>::CreateChannel Method (InstanceContext^, String^)

 

Creates a duplex channel between a service and a callback instance on the client.

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

public:
static TChannel CreateChannel(
	InstanceContext^ callbackInstance,
	String^ endpointConfigurationName
)

Parameters

callbackInstance
Type: System.ServiceModel::InstanceContext^

The InstanceContext that the client uses to listen for messages from the connected service.

endpointConfigurationName
Type: System::String^

The name used for the endpoint configuration.

Return Value

Type: TChannel

A channel of type TChannel, the generic parameter for the factory, between the client and service.

Exception Condition
ArgumentNullException

endpointConfigurationName is null.

InvalidOperationException

callbackInstance or callbackInstance.UserObject is null.

.NET Framework
Available since 3.0
Return to top
Show: