Click or drag to resize
JsonValue Class
Base class for all JSON types except null which is represented also as null in .NET.
Inheritance Hierarchy

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public abstract class JsonValue

The JsonValue type exposes the following members.

Constructors
  NameDescription
Protected methodJsonValue
Initializes a new instance of the JsonValue class
Top
Properties
  NameDescription
Public propertyIsArray
Tests if this is JSON array.
Public propertyIsBoolean
Tests if this is boolean.
Public propertyIsNumber
Test if this is JSON number.
Public propertyIsObject
Tests if this is JSON object.
Public propertyIsScalar
Tests if this is JSON string or number or boolean.
Public propertyIsString
Tests if this is JSON string.
Top
Methods
  NameDescription
Public methodStatic memberFrom
Converts object to matching JsonValue. Supports conversion of numbers, strings and dates including nullable versions.
Public methodToJson
Gets to JSON encoded string representing this object.
Top
Operators
  NameDescription
Public operatorStatic member(Boolean to JsonValue)
Performs an implicit conversion from Boolean to JsonBool.
Public operatorStatic member(Decimal to JsonValue)
Performs an implicit conversion from Decimal to JsonNumber.
Public operatorStatic member(Double to JsonValue)
Performs an implicit conversion from Double to JsonNumber.
Public operatorStatic member(Int32 to JsonValue)
Performs an implicit conversion from Int32 to JsonNumber.
Public operatorStatic member(Int64 to JsonValue)
Performs an implicit conversion from Int64 to JsonNumber.
Public operatorStatic member(NullableBoolean to JsonValue)
Performs an implicit conversion from nullable Boolean to JsonBool.
Public operatorStatic member(NullableDecimal to JsonValue)
Performs an implicit conversion from nullable Decimal to JsonNumber.
Public operatorStatic member(NullableDouble to JsonValue)
Performs an implicit conversion from nullable Double to JsonNumber.
Public operatorStatic member(NullableInt32 to JsonValue)
Performs an implicit conversion from nullable Int32 to JsonNumber.
Public operatorStatic member(NullableInt64 to JsonValue)
Performs an implicit conversion from nullable Int64 to JsonNumber.
Public operatorStatic member(NullableSingle to JsonValue)
Performs an implicit conversion from nullable Single to JsonNumber.
Public operatorStatic member(Single to JsonValue)
Performs an implicit conversion from Single to JsonNumber.
Public operatorStatic member(String to JsonValue)
Performs an implicit conversion from String to JsonString.
Top
Extension Methods
  NameDescription
Public Extension MethodAsArray
Casts (CType) value to JsonObject.
(Defined by JsonValueExtensions.)
Public Extension MethodAsBoolean
Casts (CType) value to JsonBool.
(Defined by JsonValueExtensions.)
Public Extension MethodAsNumber
Casts (CType) value to JsonNumber.
(Defined by JsonValueExtensions.)
Public Extension MethodAsObject
Casts (CType) value to JsonObject.
(Defined by JsonValueExtensions.)
Public Extension MethodAsString
Casts (CType) value to JsonString.
(Defined by JsonValueExtensions.)
Public Extension MethodToDynamic
Wraps given json value to dynamic type.
(Defined by JsonValueExtensions.)
Top
See Also