Compartilhar via


ProfileSection.AutomaticSaveEnabled Propriedade

Definição

Obtém ou define um valor que determina se as alterações às informações de perfil do usuário são salvas automaticamente ao sair da página.

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

Valor da propriedade

true se as informações de perfil forem salvas automaticamente na saída da página; caso contrário, false. O padrão é true.

Atributos

Exemplos

O exemplo de código a seguir mostra como usar a AutomaticSaveEnabled propriedade . Este exemplo de código faz parte de um exemplo maior fornecido para a ProfileSection classe .


// Get the current AutomaticSaveEnabled property value.
Console.WriteLine(
    "Current AutomaticSaveEnabled value: '{0}'", profileSection.AutomaticSaveEnabled);

// Set the AutomaticSaveEnabled property to false.
profileSection.AutomaticSaveEnabled = false;

' Get the current AutomaticSaveEnabled property value.
Console.WriteLine( _
    "Current AutomaticSaveEnabled value: '{0}'", profileSection.AutomaticSaveEnabled)

' Set the AutomaticSaveEnabled property to false.
profileSection.AutomaticSaveEnabled = false

Comentários

Quando a AutomaticSaveEnabled propriedade é false, as alterações em perfis individuais não são salvas, a menos que o Save método da ProfileCommon classe seja chamado no código. Quando a AutomaticSaveEnabled propriedade é true, o evento também permite que o ProfileAutoSaving código substitua o comportamento de salvamento automático.

Aplica-se a

Confira também