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.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
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