共用方式為


ServiceHealthDataCollection.Add 方法

定義

多載

Add(String, String)

將新的索引鍵和值組加入集合中。

Add(String, String[])

將新的索引鍵和值陣列加入集合中。

Add(String, String)

將新的索引鍵和值組加入集合中。

public:
 void Add(System::String ^ key, System::String ^ value);
public void Add (string key, string value);
override this.Add : string * string -> unit
Public Sub Add (key As String, value As String)

參數

key
String

識別資料的索引鍵。

value
String

資料。

例外狀況

keynull

適用於

Add(String, String[])

將新的索引鍵和值陣列加入集合中。

public:
 void Add(System::String ^ key, cli::array <System::String ^> ^ values);
public void Add (string key, string[] values);
override this.Add : string * string[] -> unit
Public Sub Add (key As String, values As String())

參數

key
String

識別資料的索引鍵。

values
String[]

key 相關聯的值陣列。

例外狀況

keynull

適用於