JsonObject コンストラクター

定義

オーバーロード

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

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

ソース:
JsonObject.cs
public:
 JsonObject(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Json::JsonValue ^>> ^ items);
public JsonObject (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,System.Json.JsonValue>> items);
new System.Json.JsonObject : seq<System.Collections.Generic.KeyValuePair<string, System.Json.JsonValue>> -> System.Json.JsonObject
Public Sub New (items As IEnumerable(Of KeyValuePair(Of String, JsonValue)))

パラメーター

注釈

注意

名前空間は System.Json Silverlight 用に設計されましたが、これはサポートされなくなりました。 JSON を処理する場合は、代わりに 名前空間で System.Text.Json API を使用することをお勧めします。

適用対象

JsonObject(KeyValuePair<String,JsonValue>[])

ソース:
JsonObject.cs
public:
 JsonObject(... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Json::JsonValue ^>> ^ items);
public JsonObject (params System.Collections.Generic.KeyValuePair<string,System.Json.JsonValue>[] items);
new System.Json.JsonObject : System.Collections.Generic.KeyValuePair<string, System.Json.JsonValue>[] -> System.Json.JsonObject
Public Sub New (ParamArray items As KeyValuePair(Of String, JsonValue)())

パラメーター

注釈

注意

名前空間は System.Json Silverlight 用に設計されましたが、これはサポートされなくなりました。 JSON を処理する場合は、代わりに 名前空間で System.Text.Json API を使用することをお勧めします。

適用対象