JsonTokenType enumeration

Returns the result of parsing JavaScript Object Notation (JSON) content. This class and its members are reserved for internal use and are not intended to be used in your code.

Namespace:  Microsoft.SharePoint.Client
Assembly:  Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)

Syntax

'Declaration
Public Enumeration JsonTokenType
'Usage
Dim instance As JsonTokenType
public enum JsonTokenType

Members

Member name Description
ObjectStart The start of an object, specifically, the “{” character in the JSON string.
ObjectEnd The end of an object, specifically, the “}” character in the JSON string.
ArrayStart The start of an array, specifically, the “[” character in the JSON string.
ArrayEnd The end of an array, specifically, the “]” character in the JSON string.
String A String value.
Long A Int64 value.
ULong A UInt64 value.
Double A Double value.
Boolean A Boolean value.
DateTime A DateTime value.
Guid A Guid value.
Null The null value.
Name The name of the element, specifically, the value before “:” in the JSON string.
ByteArray An array of Byte objects.
StreamLink

Remarks

This is an enumerated type.

See also

Reference

Microsoft.SharePoint.Client namespace