SqlConnectionStringBuilder.Item[String] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定與指定之索引鍵相關聯的值。 在 C# 中,這個屬性是索引子 (Indexer)。
public:
virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ keyword); void set(System::String ^ keyword, System::Object ^ value); };
public override object this[string keyword] { get; set; }
member this.Item(string) : obj with get, set
Default Public Overrides Property Item(keyword As String) As Object
參數
- keyword
- String
要取得或設定之項目的索引鍵。
屬性值
與指定之索引鍵關聯的值。
例外狀況
keyword
為 null 參考 (在 Visual Basic 中為 Nothing
)。
嘗試加入不存在於可用索引鍵中的索引鍵。
連接字串中的無效值 (特別當必須是布林值或數值,但未提供這些值時)。
範例
主控台應用程式中的下列程式碼會建立新的 SqlConnectionStringBuilder,並使用 Item[] 屬性將索引鍵/值組加入其連接字串。
using Microsoft.Data.SqlClient;
class Program
{
static void Main()
{
SqlConnectionStringBuilder builder =
new SqlConnectionStringBuilder();
builder["Data Source"] = "(local)";
builder["Integrated Security"] = true;
builder["Initial Catalog"] = "AdventureWorks";
// Overwrite the existing value for the Data Source value.
builder["Data Source"] = ".";
Console.WriteLine(builder.ConnectionString);
Console.WriteLine();
Console.WriteLine("Press Enter to continue.");
Console.ReadLine();
}
}
備註
因為 SqlConnectionStringBuilder 包含固定大小的字典,所以嘗試加入不存在於字典中的索引鍵會擲回 KeyNotFoundException。