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識別します。