Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum Newtonsoft.​Json.​DateParseHandling

Assembly: Newtonsoft.Json

Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c> , are parsed when reading JSON text.

Values

None
Date formatted strings are not parsed to a date type and are read as strings.
DateTime
Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c> , are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime" /> .
DateTimeOffset
Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c> , are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset" /> .