CommunicationObject.Close Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Causes a communication object to transition from its current state into the closed state.
Overloads
Close() |
Causes a communication object to transition from its current state into the closed state. |
Close(TimeSpan) |
Causes a communication object to transition from its current state into the closed state within a specified interval of time. |
Close()
- Source:
- CommunicationObject.cs
- Source:
- CommunicationObject.cs
- Source:
- CommunicationObject.cs
Causes a communication object to transition from its current state into the closed state.
public:
virtual void Close();
public void Close ();
abstract member Close : unit -> unit
override this.Close : unit -> unit
Public Sub Close ()
Implements
Exceptions
The communication object is in a Faulted state and cannot be modified.
The default interval of time that was allotted for the operation was exceeded before the operation was completed.
Remarks
This method causes a CommunicationObject to gracefully transition from any state, other than the Closed state, into the Closed state. The Close method allows any unfinished work to be completed before returning. For example, finish sending any buffered messages.
The CommunicationObject enters the Closing state and remains in it after the Close method is called until the transition to the Closed state is completed. The transition consists of making successive calls to OnClosing, OnClose(TimeSpan), and OnClosed.
There is also an asynchronous version of the close method that is initiated by calling BeginClose.
Applies to
Close(TimeSpan)
- Source:
- CommunicationObject.cs
- Source:
- CommunicationObject.cs
- Source:
- CommunicationObject.cs
Causes a communication object to transition from its current state into the closed state within a specified interval of time.
public:
virtual void Close(TimeSpan timeout);
public void Close (TimeSpan timeout);
abstract member Close : TimeSpan -> unit
override this.Close : TimeSpan -> unit
Public Sub Close (timeout As TimeSpan)
Parameters
- timeout
- TimeSpan
The TimeSpan that specifies how long the close operation has to complete before timing out.
Implements
Exceptions
The communication object is in a Faulted state and cannot be modified.
The default interval of time that was allotted for the operation was exceeded before the operation was completed.
Remarks
This method causes a CommunicationObject to gracefully transition from any state, other than the Closed state, into the Closed state within a specified interval of time. The Close method allows any unfinished work to be completed before returning. For example, finish sending any buffered messages.
The CommunicationObject enters the Closing state and remains in it after the Close method is called until the transition to the Closed state is completed. The transition consists of making successive calls to OnClosing, OnClose(TimeSpan) and OnClosed.
There is also an asynchronous version of the close method that is initiated by calling BeginClose.