ClientBase<TChannel> Class
Provides the base implementation used to create client objects that can call services.
System.ServiceModel::ClientBase<TChannel>
System.ServiceModel.Activities::WorkflowControlClient
System.ServiceModel::DuplexClientBase<TChannel>
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The ClientBase<TChannel> type exposes the following members.
| 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>(InstanceContext) | Initializes a new instance of the ClientBase<TChannel> class using the callbackInstance as the callback object in a duplex conversation. |
![]() | 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>(Binding, EndpointAddress) | Initializes a new instance of the ClientBase<TChannel> class using the specified binding and target address. |
![]() | 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>(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. |
![]() | ClientBase<TChannel>(InstanceContext, Binding, EndpointAddress) | Initializes a new instance of the ClientBase<TChannel> class. |
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() ![]() | Channel | Gets the inner channel used to to send messages to variously configured service endpoints. |
![]() ![]() | ChannelFactory | Gets the underlying ChannelFactory<TChannel> object. |
![]() ![]() | ClientCredentials | Gets the client credentials used to call an operation. |
![]() ![]() | Endpoint | Gets the target endpoint for the service to which the client can connect. |
![]() ![]() | InnerChannel | Gets the underlying IClientChannel implementation. |
![]() ![]() | State | Gets the current state of the ClientBase<TChannel> object. |
| Name | Description | |
|---|---|---|
![]() ![]() | Abort | Causes the ClientBase<TChannel> object to transition immediately from its current state into the closed state. |
![]() | Close | Causes the ClientBase<TChannel> object to transition from its current state into the closed state. |
![]() ![]() | CreateChannel | Returns a new channel to the service. |
![]() | DisplayInitializationUI | Instructs the inner channel to display a user interface if one is required to initialize the channel prior to using it. |
![]() ![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() ![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() | GetDefaultValueForInitialization<T> | Replicates the behavior of the default keyword in C#. |
![]() ![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() | InvokeAsync | Provides support for implementing the event-based asynchronous pattern. For more information about this pattern, see Event-based Asynchronous Pattern Overview. |
![]() ![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Open | Causes the ClientBase<TChannel> object to transition from the created state into the opened state. |
![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | ICommunicationObject::BeginClose(AsyncCallback, Object) | Begins an asynchronous operation to close the ClientBase<TChannel>. |
![]() ![]() ![]() | ICommunicationObject::BeginClose(TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to close the ClientBase<TChannel> with a specified timeout. |
![]() ![]() ![]() | ICommunicationObject::BeginOpen(AsyncCallback, Object) | Begins an asynchronous operation to open the ClientBase<TChannel> object. |
![]() ![]() ![]() | ICommunicationObject::BeginOpen(TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to open the ClientBase<TChannel> object within a specified interval of time. |
![]() ![]() ![]() | ICommunicationObject::Close() | |
![]() ![]() ![]() | ICommunicationObject::Close(TimeSpan) | Causes the ClientBase<TChannel> object to transition from its current state into the closed state. |
![]() ![]() ![]() | ICommunicationObject::Closed | The event handler that is invoked when the ClientBase<TChannel> object has transitioned from its current state to the closed state. |
![]() ![]() ![]() | ICommunicationObject::Closing | The event handler that is invoked when the ClientBase<TChannel> object transitions from its current state to the closed state. |
![]() ![]() ![]() | ICommunicationObject::EndClose | Completes an asynchronous operation to close the ClientBase<TChannel> object. |
![]() ![]() ![]() | ICommunicationObject::EndOpen | Completes an asynchronous operation to open the ClientBase<TChannel> object. |
![]() ![]() ![]() | ICommunicationObject::Faulted | The event handler that is invoked when a fault occurs while performing an operation on the ClientBase<TChannel> object. |
![]() ![]() ![]() | ICommunicationObject::Open() | |
![]() ![]() ![]() | ICommunicationObject::Open(TimeSpan) | Causes the ClientBase<TChannel> object to transition from the created state into the opened state within a specified interval of time. |
![]() ![]() ![]() | ICommunicationObject::Opened | The event handler that is invoked when the ClientBase<TChannel> object transitions from the created state to the opened state. |
![]() ![]() ![]() | ICommunicationObject::Opening | The event handler that is invoked when the ClientBase<TChannel> object transitions from the created state to the opened state. |
![]() ![]() | IDisposable::Dispose | Explicit implementation of the Dispose method. |
Extend the ClientBase<TChannel> class to create a custom client object that can be used to connect to a service. Typically, the client base class is extended by a tool such as the ServiceModel Metadata Utility Tool (Svcutil.exe) on your behalf. For an example, see the Example section.
The ClientBase<TChannel> class can be used quickly and easily by developers who prefer objects to the use of the interfaces and the System.ServiceModel::ChannelFactory<TChannel> class. In all cases this class wraps or exposes the methods and functionality of the System.ServiceModel::ChannelFactory<TChannel> class and the System.ServiceModel::IClientChannel interface.
As when using the System.ServiceModel::ServiceHost class, you can create the class and modify the endpoint, channel factory, or security information prior to making any calls or calling Open. For more information, seeWCF Client Overview and Accessing Services Using a WCF Client.
Special note for Managed C++ users deriving from this class:
Put your clean-up code in (On)(Begin)Close (and/or OnAbort), not in a destructor.
Avoid destructors: they cause the compiler to auto-generate IDisposable.
Avoid non-reference members: they can cause the compiler to auto-generate IDisposable.
Avoid finalizers; but if you include one, you should suppress the build warning and call SuppressFinalize(Object) and the finalizer itself from (On)(Begin)Close (and/or OnAbort) to emulate what would have been the auto-generated IDisposable behavior.
The following code example shows how the ServiceModel Metadata Utility Tool (Svcutil.exe) extends the ClientBase<TChannel> class to create a client class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


