Click or drag to resize
JsonTokenType Enumeration
Represents a JSON token type.

Namespace: MongoDB.Bson.IO
Assembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.0.1
Syntax
public enum JsonTokenType
Members
  Member nameValueDescription
Invalid0 An invalid token.
BeginArray1 A begin array token (a '[').
BeginObject2 A begin object token (a '{').
EndArray3 An end array token (a ']').
LeftParen4 A left parenthesis (a '(').
RightParen5 A right parenthesis (a ')').
EndObject6 An end object token (a '}').
Colon7 A colon token (a ':').
Comma8 A comma token (a ',').
DateTime9 A DateTime token.
Double10 A Double token.
Int3211 An Int32 token.
Int6412 And Int64 token.
ObjectId13 An ObjectId token.
RegularExpression14 A regular expression token.
String15 A string token.
UnquotedString16 An unquoted string token.
EndOfFile17 An end of file token.
See Also