Partilhar via


AnonymousIdentificationSection.Enabled Propriedade

Definição

Obtém ou define um valor que indica se a identificação anônima está habilitada.

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

Valor da propriedade

Boolean

true se a identificação anônima estiver habilitada; caso contrário, false. O padrão é false.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a Enabled propriedade.

   // 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())

Comentários

Se Enabled estiver definido como true, um cookie será usado para gerenciar as informações de estado do usuário.

Aplica-se a