IHttpSessionState.IsNewSession 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出工作階段是否與目前要求一起建立。
public:
property bool IsNewSession { bool get(); };
public bool IsNewSession { get; }
member this.IsNewSession : bool
Public ReadOnly Property IsNewSession As Boolean
屬性值
如果工作階段是以目前要求建立,則為 true
,否則為 false
。
範例
下列程式代碼範例會實作 IsNewSession 介面的 IHttpSessionState 屬性。
public bool IsNewSession
{
get { return pNewSession; }
}
Public ReadOnly Property IsNewSession As Boolean Implements IHttpSessionState.IsNewSession
Get
Return pNewSession
End Get
End Property