Struct JsonContent

JsonContent structure

Represents an immutable json object stored in memory.

public struct JsonContent : ICloneable, IEquatable<JsonContent>

Properties

NameDescription
Content { get; }Gets the dynamic json structure.

Methods

NameDescription
static CreateFrom(IConvertible)
static CreateFrom(IDictionary)
static CreateFrom(IList)
DeepClone()
Equals(JsonContent)
override Equals(object)
override GetHashCode()
GetNode(params IConvertible[])
GetValue<T>(params IConvertible[])
static AreEqualByContent(JsonContent, JsonContent, float)Compares two JsonContent objects for equality.
static IsJsonSerializable(object)
static IsJsonSerializable(object, out object)
implicit operator(6 operators)

Remarks

The data structure is stored in memory as a DOM, using standard objects and collections. Use JsonSerializerSettings) and JsonSerializerSettings) to convert to your types. Use !:Parse(JsonDocument) and JsonSerializerSettings) to convert from/to raw json text.

See Also