次の方法で共有


SqlCacheDependencyDatabase.ConnectionStringName プロパティ

定義

データベースの接続名を取得または設定します。

public:
 property System::String ^ ConnectionStringName { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("connectionStringName", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string ConnectionStringName { get; set; }
[<System.Configuration.ConfigurationProperty("connectionStringName", IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.ConnectionStringName : string with get, set
Public Property ConnectionStringName As String

プロパティ値

connectionStrings 構成セクション内のデータベース接続文字列の名前を指定する文字列。

属性

次のコード例は、ConnectionStringName プロパティの使用方法を示しています。


// Get the current ConnectionStringName property value.
string connectionNameValue = sqlCdd.ConnectionStringName;

// Set the ConnectionName property. This is the database name.
sqlCdd.ConnectionStringName = "DataBaseName";
' Get the current ConnectionStringName property value.
Dim connectionNameValue As String = sqlCdd.ConnectionStringName

' Set the ConnectionName property. This is the database name.
  sqlCdd.ConnectionStringName = "DataBaseName"

注釈

ConnectionStringNameプロパティを使用すると、構成ファイル内のノードの要素のadddatabases属性にプログラムでアクセスして変更connectionNameできます。 接続名は、データベース接続文字列を connectionStrings 含む セクション内の要素を識別します。

適用対象

こちらもご覧ください