IRequiresSessionState 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定目標 HTTP 處理常式需要工作階段狀態值的讀取和寫入權限。 這是沒有方法的標記介面。
public interface class IRequiresSessionState
public interface IRequiresSessionState
type IRequiresSessionState = interface
Public Interface IRequiresSessionState
- 衍生
範例
下列程式代碼範例會檢查目前的 HTTP Handler 屬性,以判斷它是否需要工作階段狀態值的讀取和寫入許可權。
bool requiresSession = false;
if (Context.Handler is IRequiresSessionState)
requiresSession = true;
Dim requiresSession As Boolean = False
If TypeOf (Context.Handler) Is IRequiresSessionState Then
requiresSession = True
End If
備註
在自定義 HTTP 處理程式中實作 IRequiresSessionState 介面,以識別您的處理程式需要會話狀態值的讀取和寫入存取權。