SqlCacheDependencyDatabase.Name 属性

定义

获取或设置数据库的名称。

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

属性值

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数据库的数据库。

适用于

另请参阅