1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| using System;
|
| namespace DPumpHydr.WinFrmUI.WenSkin.Json.Bson
| {
| internal enum BsonBinaryType : byte
| {
| Binary = 0,
| Function = 1,
| [Obsolete("This type has been deprecated in the BSON specification. Use Binary instead.")]
| BinaryOld = 2,
| [Obsolete("This type has been deprecated in the BSON specification. Use Uuid instead.")]
| UuidOld = 3,
| Uuid = 4,
| Md5 = 5,
| UserDefined = 0x80
| }
| }
|
|