1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| namespace DPumpHydr.WinFrmUI.WenSkin.Json
| {
| /// <summary>
| /// Specifies how dates are formatted when writing JSON text.
| /// </summary>
| public enum DateFormatHandling
| {
| /// <summary>
| /// Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
| /// </summary>
| IsoDateFormat,
| /// <summary>
| /// Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
| /// </summary>
| MicrosoftDateFormat
| }
| }
|
|