Aracılığıyla paylaş


SessionStateSection.AllowCustomSqlDatabase Özellik

Tanım

Kullanıcının özelliğindeki ilk katalog değerini belirtip belirtemeyeceğini belirten bir değer SqlConnectionString alır veya ayarlar.

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

Özellik Değeri

true kullanıcının kataloğu belirtmesine izin veriliyorsa; aksi takdirde , false. false varsayılan değerdir.

Öznitelikler

Örnekler

Aşağıdaki kod örneği, özelliğinin nasıl alınduğunu AllowCustomSqlDatabase gösterir. Nesneye nasıl erişeceğinizi öğrenmek için sınıf konusunun SessionStateSection kod örneğine SessionStateSection bakın.

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

Şunlara uygulanır