ClientBase<TChannel> Constructor (InstanceContext^, String^)
.NET Framework (current version)
Initializes a new instance of the ClientBase<TChannel> class using the specified callback service and endpoint configuration information.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
protected:
ClientBase(
InstanceContext^ callbackInstance,
String^ endpointConfigurationName
)
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.
| Exception | Condition |
|---|---|
| ArgumentNullException | The callback instance is null. |
| ArgumentNullException | The endpoint 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 client application configuration file. The target value is located by finding the name attribute of the client <endpoint> of <client> element.
.NET Framework
Available since 3.0
Available since 3.0
Show: