JsonObject Costruttori

Definizione

Overload

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

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

Origine:
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)))

Parametri

Commenti

Nota

Lo System.Json spazio dei nomi è stato progettato per Silverlight, che non è più supportato. Per l'elaborazione JSON, è consigliabile usare invece le API nello System.Text.Json spazio dei nomi .

Si applica a

JsonObject(KeyValuePair<String,JsonValue>[])

Origine:
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)())

Parametri

Commenti

Nota

Lo System.Json spazio dei nomi è stato progettato per Silverlight, che non è più supportato. Per l'elaborazione JSON, è consigliabile usare invece le API nello System.Text.Json spazio dei nomi .

Si applica a