IDuplexSession Interface
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Defines the interface for the session implemented on each side of a bi-directional communication between messaging endpoints.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The IDuplexSession type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | BeginCloseOutputSession(AsyncCallback, Object) | Begins an asynchronous operation to terminate the outbound session. |
![]() | BeginCloseOutputSession(TimeSpan, AsyncCallback, Object) | Begins an asynchronous operation to terminate the outbound session with a specified timeout within which the operation must complete. |
![]() | CloseOutputSession() | Terminates the outbound session that indicates that no more messages will be sent from this endpoint on the channel associated with the session. |
![]() | CloseOutputSession(TimeSpan) | Terminates the outbound session that indicates that no more messages will be sent from this endpoint on the channel associated with the session within a specified interval of time. |
![]() | EndCloseOutputSession | Completes an asynchronous operation to terminate the outbound session that indicates that no more messages will be sent from this endpoint on the channel associated with the session. |
The IDuplexSession interface is the union of the inbound session, defined by the IInputSession interface, and the outbound session, defined by the IOutputSession interface. Either the inbound session or outbound session can be terminated independently of the other. The outbound session can be terminated synchronously by calling CloseOutputSession.
The inbound session can be remotely terminated. The Receive associated with the inbound session starts returning nullptr when that session is shutdown.

