DispatchRuntime.AutomaticInputSessionShutdown Property
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.
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.