1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| namespace DPumpHydr.WinFrmUI.WenSkin.Json.Bson
| {
| internal enum BsonType : sbyte
| {
| Number = 1,
| String = 2,
| Object = 3,
| Array = 4,
| Binary = 5,
| Undefined = 6,
| Oid = 7,
| Boolean = 8,
| Date = 9,
| Null = 10,
| Regex = 11,
| Reference = 12,
| Code = 13,
| Symbol = 14,
| CodeWScope = 0xF,
| Integer = 0x10,
| TimeStamp = 17,
| Long = 18,
| MinKey = -1,
| MaxKey = sbyte.MaxValue
| }
| }
|
|