IReadOnlySessionState 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定目標 HTTP 處理常式只需要工作階段狀態值的讀取權限。 這是沒有方法的標記介面。
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
- 實作
範例
下列程式碼範例會檢查目前的 HTTP Handler 屬性,以判斷它是否需要會話狀態值的讀取權限。
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
備註
在您的 IReadOnlySessionState 自訂處理常式中實作 介面,以識別您的處理常式只需要會話狀態值的讀取權限。