1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| namespace DPumpHydr.WinFrmUI.WenSkin.Json
| {
| /// <summary>
| /// Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
| /// </summary>
| public enum DateParseHandling
| {
| /// <summary>
| /// Date formatted strings are not parsed to a date type and are read as strings.
| /// </summary>
| None,
| /// <summary>
| /// Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime" />.
| /// </summary>
| DateTime,
| /// <summary>
| /// Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset" />.
| /// </summary>
| DateTimeOffset
| }
| }
|
|