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
add
組態檔中節點元素的屬性 databases
。
屬性 name
會識別資料表用於 的資料庫 SqlCacheDependency 。