We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a253020 commit b018361Copy full SHA for b018361
Microsoft.Azure.Cosmos/src/Json/JsonWriteOptions.cs
@@ -16,8 +16,19 @@ namespace Microsoft.Azure.Cosmos.Json
16
#endif
17
enum JsonWriteOptions
18
{
19
+ /// <summary>
20
+ /// No special options are applied. Uses default behavior for JSON writing.
21
+ /// </summary>
22
None = 0,
23
+
24
25
+ /// Enables the writing of uniform number arrays and arrays containing uniform number arrays.
26
27
EnableNumberArrays = 1 << 0,
28
29
30
+ /// Enables support for writing 64-bit unsigned integers (UInt64).
31
32
EnableUInt64 = 1 << 1,
33
}
34
0 commit comments