Enum BsonType
Represents the type of a BSON element.
public enum BsonType
- Extension Methods
Fields
EndOfDocument = 0Not a real BSON type. Used to signal the end of a document.
Double = 1A BSON double.
String = 2A BSON string.
Document = 3A BSON document.
Array = 4A BSON array.
Binary = 5BSON binary data.
Undefined = 6A BSON undefined value.
ObjectId = 7A BSON ObjectId.
Boolean = 8A BSON bool.
DateTime = 9A BSON DateTime.
Null = 10A BSON null value.
RegularExpression = 11A BSON regular expression.
JavaScript = 13BSON JavaScript code.
Symbol = 14A BSON symbol.
JavaScriptWithScope = 15BSON JavaScript code with a scope (a set of variables with values).
Int32 = 16A BSON 32-bit integer.
Timestamp = 17A BSON timestamp.
Int64 = 18A BSON 64-bit integer.
Decimal128 = 19A BSON 128-bit decimal.
MinKey = 255A BSON MinKey value.
MaxKey = 127A BSON MaxKey value.