Public classes


Scripts/

   JArray
   JBoolean
   JNull
   JNumber
   JSON
   JString
   JValue

Scripts/Attributes/

      ExcludeFromJSONSerializeAttribute
      IncludeToJSONSerializeAttribute

Scripts/Exceptions/

      DeserializeException
      JArgumentException
      JArgumentNullException
      JArrayIndexOutOfRangeException
      JNumberFormatException
      JNumberOverflowException
      JSONKeyAlreadyExistsException
      JSONKeyNotFoundException
      JValueNullException
      JValueTypeException
      ParseException
      ProtectedException
      SerializeException
      UnknownObjectTypeException

Scripts/Settings/

      CreateStringSettings
      DeserializeSettings
      ParseStringSettings
      SerializeSettings


Introduction page

JNull
Derived from JValue


Class to store null value in JSON format.


Constructors

public JNull ()Creates new JNull object.

Methods

public override bool Equals (object anotherObject)Test if another object equals to this object.

Constructors

public JNull ()

Creates new JNull object.


Methods

public override bool Equals (object anotherObject)

Test if another object equals to this object. This method always returns true if parameter object is instance of JNull, but false if parameter is system null.

ParametersanotherObjectAnother object that is compared to this one.

ReturnsTrue if objects are equal, false otherwise.