Class JsonObject
JsonObject class for encapsulating generic object types. We use this to hide internal Json implementation details.
Implements
Inherited Members
Namespace: Unity.Services.Lobbies.Http
Assembly: solution.dll
Syntax
[Preserve]
public class JsonObject : IDeserializable
Methods
Name | Description |
---|---|
GetAsString() | Returns the internal object as a string. |
GetAs<T>() | Overload for returning the object as a defined type but without needing to specify DeserializationSettings. |
GetAs<T>(DeserializationSettings) | Returns the object as a defined type. |
GetNewJsonObjectResponse(Dictionary<string, List<object>>) | Convert dictionary of string, list of object to dictionary of string, list of jsonobject. |
GetNewJsonObjectResponse(Dictionary<string, object>) | Convert dictionary of string, object to dictionary of string, jsonobject. |
GetNewJsonObjectResponse(List<List<object>>) | Convert list of list of object to list of list of jsonobject. |
GetNewJsonObjectResponse(List<object>) | Convert list of object to list of jsonobject. |
GetNewJsonObjectResponse(object) | Convert object to jsonobject. |