IInputSessionShutdown Interface

Definition

Defines the contract that must be implemented to shut down an input session.

public interface class IInputSessionShutdown
public interface IInputSessionShutdown
type IInputSessionShutdown = interface
Public Interface IInputSessionShutdown

Remarks

Use the IInputSessionShutdown interface inside a duplex session to send outbound messages prior to closing the session. For example, if a client closes a session the service can implement DoneReceiving to be notified prior to the shutdown, enabling the service to send one notification message prior to returning. The client receives the notification prior to the acknowledgment that the client can close the channel.

Methods

ChannelFaulted(IDuplexContextChannel)

Indicates that the channel has faulted.

DoneReceiving(IDuplexContextChannel)

Indicates when the client channel is done receiving messages as part of the duplex message exchange.

Applies to