JsonObject.AddRange 方法

定義

多載

AddRange(IEnumerable<KeyValuePair<String,JsonValue>>)
AddRange(KeyValuePair<String,JsonValue>[])

AddRange(IEnumerable<KeyValuePair<String,JsonValue>>)

來源:
JsonObject.cs
public:
 void AddRange(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Json::JsonValue ^>> ^ items);
public void AddRange (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,System.Json.JsonValue>> items);
member this.AddRange : seq<System.Collections.Generic.KeyValuePair<string, System.Json.JsonValue>> -> unit
Public Sub AddRange (items As IEnumerable(Of KeyValuePair(Of String, JsonValue)))

參數

備註

注意

命名空間 System.Json 是針對不再支援的 Silverlight 所設計。 若要處理 JSON,建議您改用 命名空間中的 System.Text.Json API。

適用於

AddRange(KeyValuePair<String,JsonValue>[])

來源:
JsonObject.cs
public:
 void AddRange(... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Json::JsonValue ^>> ^ items);
public void AddRange (params System.Collections.Generic.KeyValuePair<string,System.Json.JsonValue>[] items);
member this.AddRange : System.Collections.Generic.KeyValuePair<string, System.Json.JsonValue>[] -> unit
Public Sub AddRange (ParamArray items As KeyValuePair(Of String, JsonValue)())

參數

備註

注意

命名空間 System.Json 是針對不再支援的 Silverlight 所設計。 若要處理 JSON,建議您改用 命名空間中的 System.Text.Json API。

適用於