Click or drag to resize

BsonReaderState Enumeration

Represents the state of a reader.

Namespace:  MongoDB.Bson.IO
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public enum BsonReaderState
Members
  Member nameValueDescription
Initial0 The initial state.
Type1 The reader is positioned at the type of an element or value.
Name2 The reader is positioned at the name of an element.
Value3 The reader is positioned at a value.
ScopeDocument4 The reader is positioned at a scope document.
EndOfDocument5 The reader is positioned at the end of a document.
EndOfArray6 The reader is positioned at the end of an array.
Done7 The reader has finished reading a document.
Closed8 The reader is closed.
See Also