Compartilhar via


SessionStateSection.AllowCustomSqlDatabase Propriedade

Definição

Obtém ou define um valor que indica se o usuário pode especificar o valor de catálogo inicial na propriedade SqlConnectionString.

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

Valor da propriedade

Boolean

true se o usuário tiver permissão para especificar o catálogo; caso contrário, false. O valor padrão é false.

Atributos

Exemplos

O exemplo de código a seguir demonstra como obter a AllowCustomSqlDatabase propriedade. Consulte o exemplo de código no tópico de SessionStateSection classe para saber como acessar o SessionStateSection objeto.

// Display the current AllowCustomSqlDatabase property value.
Console.WriteLine("AllowCustomSqlDatabase: {0}",
  sessionStateSection.AllowCustomSqlDatabase);
' Display the current AllowCustomSqlDatabase property value.
Console.WriteLine("AllowCustomSqlDatabase: {0}", _
  sessionStateSection.AllowCustomSqlDatabase)

Aplica-se a