SessionStateSection.AllowCustomSqlDatabase Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob der Benutzer den Wert für den ursprünglichen Katalog in der SqlConnectionString-Eigenschaft angeben kann, oder legt diesen fest.

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

Eigenschaftswert

true, wenn der Benutzer den Katalog angeben darf, andernfalls false. Der Standardwert ist false.

Attribute

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Die AllowCustomSqlDatabase Eigenschaft abgerufen wird. Lesen Sie das Codebeispiel im SessionStateSection Klassenthema, um zu erfahren, wie Sie auf das SessionStateSection Objekt zugreifen.

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

Gilt für: