SessionStateSection.Mode 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指定儲存工作階段狀態的位置。
public:
property System::Web::SessionState::SessionStateMode Mode { System::Web::SessionState::SessionStateMode get(); void set(System::Web::SessionState::SessionStateMode value); };
[System.Configuration.ConfigurationProperty("mode", DefaultValue=System.Web.SessionState.SessionStateMode.InProc)]
public System.Web.SessionState.SessionStateMode Mode { get; set; }
[<System.Configuration.ConfigurationProperty("mode", DefaultValue=System.Web.SessionState.SessionStateMode.InProc)>]
member this.Mode : System.Web.SessionState.SessionStateMode with get, set
Public Property Mode As SessionStateMode
屬性值
其中一個 SessionStateMode 值。 預設值是 InProc。
- 屬性
範例
下列程式碼範例示範如何取得 Mode 屬性。 請參閱類別主題中的 SessionStateSection 程式碼範例,以瞭解如何存取 SessionStateSection 物件。
// Display the current Mode property value.
Console.WriteLine("Mode: {0}",
sessionStateSection.Mode);
' Display the current Mode property value.
Console.WriteLine("Mode: {0}", sessionStateSection.Mode)
備註
SessionStateMode不是必要的屬性,而且可以從組態階層中的較高層級或預設值繼承。 不過,此區段的組態處理常式一律會在撰寫此區段時,根據目前的繼承值寫出模式。