共用方式為


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

屬性值

字串,指定由 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 可讓您以程式設計方式存取和修改 nameadd 組態檔中節點元素的屬性 databases

屬性 name 會識別資料表用於 的資料庫 SqlCacheDependency

適用於

另請參閱