Click or drag to resize
JsonDynamic Methods

The JsonDynamic type exposes the following members.

Methods
  NameDescription
Public methodAdd(JsonValue)
Adds an items to the end of the array.
Public methodAdd(String, JsonValue)
Adds an member with the specified key to this object.
Public methodAddArray
Adds an empty array to the end of the array and returns its instance.
Public methodAddArray(String)
Adds an empty array property and returns it's instance.
Public methodAddObject
Adds an empty object and returns its instance.
Public methodAddObject(String)
Adds an empty object property and returns its instance.
Public methodAddRange
Adds the values of the specified collection to the end of the array.
Public methodContainsKey
Tests whether the object contains a member with the specified key. It does not check the value of the member which might be null.
Public methodContainsKeyNotNull
Tests whether the object contains a member with the specified key and which is not null.
Public methodEquals(Object)
Determines whether current object is equal to another object.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(JsonDynamic)
Determines whether current object is equal to another object.
Public methodEquals(JsonValue)
Determines whether current object is equal to another object.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Overrides ValueTypeGetHashCode.)
Public methodGetOrAdd(String, JsonDynamic)
Gets the member stored under given key. If key does not exist provided value is stored as new member.
Public methodGetOrAdd(String, JsonValue)
Gets the member stored under given key. If key does not exist provided value is stored as new member.
Public methodGetOrDefault(String, JsonDynamic)
Gets value stored under given key and casts it to dynamic type. If not such member exists than defaultValue is returned.
Public methodGetOrDefault(String, JsonValue)
Gets value stored under given key and returns it as dynamic type. If not such member exists than defaultValue is returned.
Public methodInsert
Inserts an value into the array at the specified index.
Public methodInsertArray
Inserts an empty array at the specified index and returns its instance.
Public methodInsertObject
Adds an empty object at the specified index and returns its instance.
Public methodInsertRange
Inserts the values of a collection into the array at the specified index.
Public methodToJson
Gets to JSON encoded string representing this object.
Top
Extension Methods
  NameDescription
Public Extension MethodToStatic
Returns the value of the dynamic wrapper.
(Defined by JsonDynamicExtensions.)
Top
See Also