ServiceBehaviorAttribute.AutomaticSessionShutdown Property

Definition

Specifies whether to automatically close a session when a client closes an output session.

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

Property Value

true if services automatically close a session when the client closes an output session; otherwise, false. The default is true.

Remarks

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

Applies to