IReadOnlySessionState Interface
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
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
Implement the IReadOnlySessionState interface in your custom handler to identify that your handler requires only read access to session-state values.
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 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: