Provides access to Sequential JSON Reader.
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Members
|
Name |
Description |
 |
CurrentTokenType |
Obtains type of current token. |
 |
FindProperties |
Reads current object until one of property names matches. Case is ignored. Return value is an index of property name that matched, otherwise -1. |
 |
FindProperty |
Reads current object until property name matches or object ends. Case is ignored. |
 |
IsBoolean |
Indicates true if current token is a property value or array value of boolean type. |
 |
IsEndOfArray |
Indicates true if current token is ']'. |
 |
IsEndOfObject |
Indicates true if current token is '}'. |
 |
IsNull |
Indicates true if current token is a property value or array value and equals to null. |
 |
IsNumber |
Indicates true if current token is a property value or array value of numeric type. |
 |
IsStartOfArray |
Indicates true if current token is '['. |
 |
IsStartOfObject |
Indicates true if current token is '{'. |
 |
IsString |
Indicates true if current token is a property value or array value of type string. |
 |
Read |
Reads next JSON token. |
 |
ReadFrom |
Specifies input stream. |
 |
ReadFromString |
Specifies input as string. |
 |
ReadPropertyName |
Obtains property name. Advances to the next token. |
 |
ReadValue |
Obtains array or property value as Variant. Advances to the next token. |
 |
ReadValueAsBoolean |
Obtains array or property value as boolean. Advances to the next token. If property value cannot be coerced to boolean, returns E_FAIL. |
 |
ReadValueAsDate |
Obtains property or array value as date. Advances to the next token. If property value cannot be coerced to datetime, returns E_FAIL. |
 |
ReadValueAsDouble |
Obtains property or array value as number. Advances to the next token. If property value cannot be coerced to double, returns E_FAIL. |
 |
ReadValueAsLong |
Obtains property or array value as number. Advances to the next token. If property value cannot be coerced to long, returns E_FAIL. |
 |
ReadValueAsString |
Obtains property or array value as string. Advances to the next token. If property value cannot be coerced to string, returns E_FAIL. |
 |
SkipUntilArrayEnds |
Skips the rest of the current object, including closing bracket. |
 |
SkipUntilObjectEnds |
Skips the rest of the current object, including closing bracket. |
 |
Stream |
Obtains underlying stream. |
Classes that implement IJSONReader
Classes |
Description |
JSONReader |
A sequential JSON Reader. |