DispatchRuntime.AutomaticInputSessionShutdown Property

Definition

Gets or sets a value that specifies whether the service closes an input session when the client closes an output session.

public:
 property bool AutomaticInputSessionShutdown { bool get(); void set(bool value); };
public bool AutomaticInputSessionShutdown { get; set; }
member this.AutomaticInputSessionShutdown : bool with get, set
Public Property AutomaticInputSessionShutdown As Boolean

Property Value

true if the service closes an input session when the client closes an output session; otherwise, false. The default is true.

Remarks

If you set the AutomaticInputSessionShutdown property to false, the channel must be closed by some other mechanism. In this case, you must add a custom session shutdown handler to the InputSessionShutdownHandlers property.

By default when a client closes an output session and the service has finished processing any remaining messages the server closes the session. Setting AutomaticInputSessionShutdown to false prevents the server from automatically closing the session and enables custom control of session lifetimes.

Applies to