共用方式為


AnonymousIdentificationSection.Enabled 屬性

定義

取得或設定值,指出是否啟用匿名識別。

public:
 property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=false)]
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=false)>]
member this.Enabled : bool with get, set
Public Property Enabled As Boolean

屬性值

如果啟用匿名識別則為 true,否則為 false。 預設為 false

屬性

範例

下列程式碼範例示範如何存取 Enabled 屬性。

   // Get Enabled.
   bool aIdEnabled =
       anonymousIdentificationSection.Enabled;

   Console.WriteLine("Anonymous identification enabled: {0}",
       aIdEnabled.ToString());
' Get Enabled.
Dim aIdEnabled As Boolean = _
anonymousIdentificationSection.Enabled
Console.WriteLine("Anonymous identification enabled: {0}", _
aIdEnabled.ToString())

備註

如果 Enabled 設定為 true ,則會使用 Cookie 來管理使用者的狀態資訊。

適用於