IRequiresSessionState Interface

Definition

Specifies that the target HTTP handler requires read and write access to session-state values. This is a marker interface and has no methods.

C#
public interface IRequiresSessionState
Derived

Examples

The following code example examines the current HTTP Handler property to determine whether it requires read and write access to session-state values.

C#
bool requiresSession = false;

if (Context.Handler is IRequiresSessionState)
  requiresSession = true;

Remarks

Implement the IRequiresSessionState interface in your custom HTTP handler to identify that your handler requires read and write access to session-state values.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1