Windows apps
Collapse the table of content
Expand the table of content
Information
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.

ClientBase<TChannel> Constructor (InstanceContext^, String^, EndpointAddress^)

 

Initializes a new instance of the ClientBase<TChannel> class.

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

protected:
ClientBase(
	InstanceContext^ callbackInstance,
	String^ endpointConfigurationName,
	EndpointAddress^ remoteAddress
)

Parameters

callbackInstance
Type: System.ServiceModel::InstanceContext^

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

endpointConfigurationName
Type: System::String^

The name of the endpoint in the application configuration file.

remoteAddress
Type: System.ServiceModel::EndpointAddress^

The address of the service.

Exception Condition
ArgumentNullException

The callback instance is null.

ArgumentNullException

The endpoint is null.

ArgumentNullException

The remote address is null.

InvalidOperationException

The endpoint cannot be found or the endpoint contract is not valid.

Use this constructor to pass a service object that implements the callback contract for the target service and determine the target endpoint information from the name of the endpoint in an application configuration file (The target value is located by finding the name attribute of the client <endpoint> of <client> element) and the specified address.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft