ClientBase<TChannel>.ICommunicationObject.Close Method

Definition

Overloads

ICommunicationObject.Close()

Causes a communication object to transition from its current state into the closed state.

ICommunicationObject.Close(TimeSpan)

Causes the ClientBase<TChannel> object to transition from its current state into the closed state.

ICommunicationObject.Close()

Causes a communication object to transition from its current state into the closed state.

 virtual void System.ServiceModel.ICommunicationObject.Close() = System::ServiceModel::ICommunicationObject::Close;
void ICommunicationObject.Close ();
abstract member System.ServiceModel.ICommunicationObject.Close : unit -> unit
override this.System.ServiceModel.ICommunicationObject.Close : unit -> unit
Sub Close () Implements ICommunicationObject.Close

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the ClientBase<TChannel> instance is cast to an ICommunicationObject interface.

Applies to

ICommunicationObject.Close(TimeSpan)

Causes the ClientBase<TChannel> object to transition from its current state into the closed state.

 virtual void System.ServiceModel.ICommunicationObject.Close(TimeSpan timeout) = System::ServiceModel::ICommunicationObject::Close;
void ICommunicationObject.Close (TimeSpan timeout);
abstract member System.ServiceModel.ICommunicationObject.Close : TimeSpan -> unit
override this.System.ServiceModel.ICommunicationObject.Close : TimeSpan -> unit
Sub Close (timeout As TimeSpan) Implements ICommunicationObject.Close

Parameters

timeout
TimeSpan

The time within which the call must complete.

Implements

Remarks

For more information, see System.ServiceModel.Channels.CommunicationObject.

Applies to