BsonBinarySubType Enumeration (original) (raw)
Represents the binary data subtype of a BsonBinaryData.
Namespace: MongoDB.Bson
Assembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
[SerializableAttribute] public enum BsonBinarySubType
Public Enumeration BsonBinarySubType[] type BsonBinarySubType
Members
| | Member name | Value | Description | | ------------- | ----- | ----------------------------------------------------------------- | | Binary | 0 | Binary data. | | Function | 1 | A function. | | OldBinary | 2 | Obsolete. Obsolete binary data subtype (use Binary instead). | | UuidLegacy | 3 | A UUID in a driver dependent legacy byte order. | | UuidStandard | 4 | A UUID in standard network byte order. | | MD5 | 5 | An MD5 hash. | | Encrypted | 6 | Encrypted binary data. | | UserDefined | 128 | User defined binary data. |
See Also