Click or drag to resize

BsonWriterState Enumeration

Represents the state of a BsonWriter.

Namespace:  MongoDB.Bson.IO
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public enum BsonWriterState
Members
  Member nameValueDescription
Initial0 The initial state.
Name1 The writer is positioned to write a name.
Value2 The writer is positioned to write a value.
ScopeDocument3 The writer is positioned to write a scope document (call WriteStartDocument to start writing the scope document).
Done4 The writer is done.
Closed5 The writer is closed.
See Also