IReadOnlySessionState Interface

Definition

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

C#
public interface IReadOnlySessionState : System.Web.SessionState.IRequiresSessionState
Implements

Examples

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

C#
bool readOnlySession = false;

if (Context.Handler is IReadOnlySessionState)
  readOnlySession = true;

Remarks

Implement the IReadOnlySessionState interface in your custom handler to identify that your handler requires only read 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