Fauna v10 .NET/C# Driver 0.2.0-beta
 
Loading...
Searching...
No Matches
TokenType.cs
Go to the documentation of this file.
1namespace Fauna.Serialization;
2
6public enum TokenType
7{
8
10 None,
11
16
21
25 EndPage,
26
30 EndRef,
31
36
39
41 String,
42
44 Int,
46 Long,
48 Double,
49
51 Date,
53 Time,
54
56 True,
58 False,
59
61 Null,
62
64 Module,
65
67 Stream,
68}
TokenType
Enumerates the types of tokens used in Fauna serialization.
Definition TokenType.cs:7
@ Int
The token type is a Fauna integer.
@ StartRef
The token type is the start of a Fauna ref.
@ String
The token type is a Fauna string.
@ EndArray
The token type is the end of a Fauna array.
@ EndObject
The token type is the end of a Fauna object.
@ EndRef
The token type is the end of a Fauna ref.
@ Date
The token type is a Fauna date.
@ StartDocument
The token type is the start of a Fauna document.
@ EndPage
The token type is the end of a Fauna set (a.k.a. page).
@ StartPage
The token type is the start of a Fauna set (a.k.a. page).
@ None
There is no value. This is the default token type if no data has been read by the T:Fauna....
@ Long
The token type is a Fauna long.
@ StartArray
The token type is the start of a Fauna array.
@ Time
The token type is a Fauna time.
@ Null
The token type is the Fauna literal null.
@ FieldName
The token type is a Fauna property name.
@ StartObject
The token type is the start of a Fauna object.
@ Double
The token type is a Fauna double.
@ EndDocument
The token type is the end of a Fauna document.
@ Module
The token type is the Fauna module.
@ Stream
The token type is the Fauna stream token.
@ True
The token type is the Fauna literal true.
@ False
The token type is the Fauna literal false.