次の方法で共有


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ノードの要素のadd``databases属性にプログラムでアクセスして変更できます。

この属性は name 、テーブルが使用されているデータベースを SqlCacheDependency識別します。

適用対象

こちらもご覧ください