BsonReaderState Enumeration (original) (raw)
Represents the state of a reader.
Namespace: MongoDB.Bson.IO
Assembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
public enum BsonReaderState
Public Enumeration BsonReaderState
Members
| | Member name | Value | Description | | ------------- | ----- | ------------------------------------------------------------ | | Initial | 0 | The initial state. | | Type | 1 | The reader is positioned at the type of an element or value. | | Name | 2 | The reader is positioned at the name of an element. | | Value | 3 | The reader is positioned at a value. | | ScopeDocument | 4 | The reader is positioned at a scope document. | | EndOfDocument | 5 | The reader is positioned at the end of a document. | | EndOfArray | 6 | The reader is positioned at the end of an array. | | Done | 7 | The reader has finished reading a document. | | Closed | 8 | The reader is closed. |
See Also