SqlCacheDependencyDatabase.ConnectionStringName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
データベースの接続名を取得または設定します。
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プロパティを使用すると、構成ファイル内のノードの要素のadd
databases
属性にプログラムでアクセスして変更connectionName
できます。 接続名は、データベース接続文字列を connectionStrings
含む セクション内の要素を識別します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET