You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// No option is set. The results will be an iterator of (key, value).
21
+
/// </summary>
19
22
None=0,
20
23
24
+
/// <summary>
25
+
/// Indicates that only keys need to be returned. The results will be an iterator of keys.
26
+
/// </summary>
21
27
KeysOnly=1<<0,
28
+
29
+
/// <summary>
30
+
/// Indicates that the prefix byte of keys should be removed before return.
31
+
/// </summary>
22
32
RemovePrefix=1<<1,
33
+
34
+
/// <summary>
35
+
/// Indicates that only values need to be returned. The results will be an iterator of values.
36
+
/// </summary>
23
37
ValuesOnly=1<<2,
38
+
39
+
/// <summary>
40
+
/// Indicates that values should be deserialized before return.
41
+
/// </summary>
24
42
DeserializeValues=1<<3,
43
+
44
+
/// <summary>
45
+
/// Indicates that only the field 0 of the deserialized values need to be returned. This flag must be set together with <see cref="DeserializeValues"/>.
46
+
/// </summary>
25
47
PickField0=1<<4,
26
-
PickField1=1<<5
48
+
49
+
/// <summary>
50
+
/// Indicates that only the field 1 of the deserialized values need to be returned. This flag must be set together with <see cref="DeserializeValues"/>.
51
+
/// </summary>
52
+
PickField1=1<<5,
53
+
54
+
/// <summary>
55
+
/// Indicates that results should be returned in backwards (descending) order.
0 commit comments