ProfilePropertySettings.AllowAnonymous 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出動態產生之 ProfileCommon
類別中的相關聯屬性是否可以由匿名使用者進行設定。
public:
property bool AllowAnonymous { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("allowAnonymous", DefaultValue=false)]
public bool AllowAnonymous { get; set; }
[<System.Configuration.ConfigurationProperty("allowAnonymous", DefaultValue=false)>]
member this.AllowAnonymous : bool with get, set
Public Property AllowAnonymous As Boolean
屬性值
如果 true
類別中的相關聯屬性可由匿名使用者進行設定,則為 ProfileCommon
,否則為 false
,表示匿名使用者無法變更屬性值。 預設為 false
。
- 屬性
範例
下列程式碼範例示範如何使用 AllowAnonymous 屬性。 此程式碼範例是提供給 類別之較大範例的 ProfileSection 一部分。
// Get the current AllowAnonymous property value.
Console.WriteLine(
"Current AllowAnonymous value: '{0}'", profilePropertySettings.AllowAnonymous);
// Set the AllowAnonymous property to true.
profilePropertySettings.AllowAnonymous = true;
' Get the current AllowAnonymous property value.
Console.WriteLine( _
"Current AllowAnonymous value: '{0}'", profilePropertySettings.AllowAnonymous)
' Set the AllowAnonymous property to true.
profilePropertySettings.AllowAnonymous = true
備註
在執行時間,ASP.NET 編譯系統會使用組態檔 區段中指定 profile
的資訊來產生名為 ProfileCommon
的類別,其衍生自 ProfileBase 。 類別可讓您存取和修改個別使用者設定檔的值。
類別 ProfileCommon
定義是以組態檔區段子區段中 profile
定義的 properties
屬性為基礎。 您為 類別實例 ProfilePropertySettings 指定的屬性值將用來定義 類別中的 ProfileCommon
相關聯屬性。
如果當屬性值為 false
時 AllowAnonymous ,匿名使用者變更類別中的 ProfileCommon
屬性,就會擲回例外狀況。