IReadOnlySessionState Interface
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.
Specifies that the target HTTP handler requires only read access to session-state values. This is a marker interface and has no methods.
public interface class IReadOnlySessionState : System::Web::SessionState::IRequiresSessionState
public interface IReadOnlySessionState : System.Web.SessionState.IRequiresSessionState
type IReadOnlySessionState = interface
interface IRequiresSessionState
Public Interface IReadOnlySessionState
Implements 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.
bool readOnlySession = false;
if (Context.Handler is IReadOnlySessionState)
readOnlySession = true;
Dim readOnlySession As Boolean = False
If TypeOf (Context.Handler) Is IReadOnlySessionState Then
readOnlySession = True
End If
Remarks
Implement the IReadOnlySessionState interface in your custom handler to identify that your handler requires only read access to session-state values.