Click or drag to resize
JsonString Class
Represents a JSON string. Internal value is never null.
Inheritance Hierarchy

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

The JsonString type exposes the following members.

Constructors
  NameDescription
Public methodJsonString
Creates new JSON string.
Top
Properties
  NameDescription
Public propertyChars
Gets the Char object at a specified position in the current object.
Public propertyLength
Gets the number of characters in the current object.
Public propertyValue
Actual string value encoded by this JSON object.
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether current object is equal to another object.
(Overrides ObjectEquals(Object).)
Public methodEquals(JsonDynamic)
Determines whether current object is equal to another object.
Public methodEquals(JsonString)
Determines whether current object is equal to another object.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Overrides ObjectGetHashCode.)
Public methodStatic memberIsNullOrEmpty
Indicates whether a specified JsonString is Nothing or empty.
Public methodStatic memberIsNullOrWhitespace
Indicates whether a specified JsonString is Nothing, empty, or consists only of white-space characters.
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Test whether values of its operands are equal or both null.
Public operatorStatic member(String to JsonString)
Performs an implicit conversion from String to JsonString.
Public operatorStatic member(JsonString to String)
Performs an implicit conversion from JsonString to String.
Public operatorStatic memberInequality
Test whether values of its operands are inequal.
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
Remarks
Immutable.
See Also