SessionStateSection.AllowCustomSqlDatabase 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示用户能否在 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
属性值
如果允许用户指定目录,则为 true
;否则为 false
。 默认值是 false
。
- 属性
示例
下面的代码示例演示如何获取 AllowCustomSqlDatabase 属性。 请参阅类主题中的 SessionStateSection 代码示例,了解如何访问 对象 SessionStateSection 。
// Display the current AllowCustomSqlDatabase property value.
Console.WriteLine("AllowCustomSqlDatabase: {0}",
sessionStateSection.AllowCustomSqlDatabase);
' Display the current AllowCustomSqlDatabase property value.
Console.WriteLine("AllowCustomSqlDatabase: {0}", _
sessionStateSection.AllowCustomSqlDatabase)