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.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
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