SqlCacheDependencyDatabase.Name 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置数据库的名称。
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("name", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Name { get; set; }
[<System.Configuration.ConfigurationProperty("name", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Name : string with get, set
Public Property Name As String
属性值
一个字符串,指定 SqlCacheDependencyDatabase 用来标识数据库的名称。
- 属性
示例
下面的代码示例说明如何使用 Name 属性。
// Get the current Name property value.
string nameValue = sqlCdd.Name;
// Set the Name for this configuration element.
sqlCdd.Name = "ConfigElementName";
' Get the current Name property value.
Dim nameValue As String = sqlCdd.Name
' Set the Name for this configuration element.
sqlCdd.Name = "ConfigElementName"
注解
该Name属性允许以编程方式访问和修改name
配置文件中节点元素databases
的属性add
。
该 name
属性标识其表用于该 SqlCacheDependency数据库的数据库。