JsonParseErrorKind
enum JsonParseErrorKind extends int32import JsonParseErrorKind from Wax;Reasons JSON parsing can fail: missing input, invalid syntax or escapes, an unterminated comment, trailing content, or a required array root that was another kind.
Members
UnexpectedEndcase
case UnexpectedEndUnexpectedTokencase
case UnexpectedTokenExpectedColoncase
case ExpectedColonExpectedCommaOrClosecase
case ExpectedCommaOrCloseInvalidStringcase
case InvalidStringInvalidNumbercase
case InvalidNumberUnterminatedCommentcase
case UnterminatedCommentTrailingContentcase
case TrailingContentExpectedArraycase
case ExpectedArrayCompareTomethod
public fn CompareTo(JsonParseErrorKind other) : int32Provided by the compiler.
Equalsmethod
public fn Equals(JsonParseErrorKind other) : boolProvided by the compiler.
GetHashCodemethod
public fn GetHashCode() : uint32Provided by the compiler.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.