ClientBase<TChannel> Constructor (InstanceContext^, String^, String^)
Initializes a new instance of the ClientBase<TChannel> class.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
protected:
ClientBase(
InstanceContext^ callbackInstance,
String^ endpointConfigurationName,
String^ 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::String^
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.
Available since 3.0