ClientBase<TChannel> Constructor
Initializes a new instance of the ClientBase<TChannel> class.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | ClientBase<TChannel>() | Initializes a new instance of the ClientBase<TChannel> class using the default target endpoint from the application configuration file. |
![]() | ClientBase<TChannel>(Binding^, EndpointAddress^) | Initializes a new instance of the ClientBase<TChannel> class using the specified binding and target address. |
![]() | ClientBase<TChannel>(InstanceContext^) | Initializes a new instance of the ClientBase<TChannel> class using the callbackInstance as the callback object in a duplex conversation. |
![]() | ClientBase<TChannel>(InstanceContext^, Binding^, EndpointAddress^) | Initializes a new instance of the ClientBase<TChannel> class. |
![]() | ClientBase<TChannel>(InstanceContext^, ServiceEndpoint^) | Initializes a new instance of the ClientBase<TChannel> class using the specified InstanceContext and System.ServiceModel.Description::ServiceEndpoint objects. |
![]() | ClientBase<TChannel>(InstanceContext^, String^) | Initializes a new instance of the ClientBase<TChannel> class using the specified callback service and endpoint configuration information. |
![]() | ClientBase<TChannel>(InstanceContext^, String^, EndpointAddress^) | Initializes a new instance of the ClientBase<TChannel> class. |
![]() | ClientBase<TChannel>(InstanceContext^, String^, String^) | Initializes a new instance of the ClientBase<TChannel> class. |
![]() | ClientBase<TChannel>(ServiceEndpoint^) | Initializes a new instance of the ClientBase<TChannel> class using the specified System.ServiceModel.Description::ServiceEndpoint. |
![]() | ClientBase<TChannel>(String^) | Initializes a new instance of the ClientBase<TChannel> class using the configuration information specified in the application configuration file by endpointConfigurationName. |
![]() | ClientBase<TChannel>(String^, EndpointAddress^) | Initializes a new instance of the ClientBase<TChannel> class using the specified target address and endpoint information. |
![]() | ClientBase<TChannel>(String^, String^) | Initializes a new instance of the ClientBase<TChannel> class. |
Use to create a WCF client object from the endpoint information in the application configuration file. The main function of the constructor is to create a System.ServiceModel::ChannelFactory<TChannel> where the type parameter is the type of the target service contract.
