As of Noda Time 2.3, the following types implement IXmlSerializable
and can therefore be serialized:
Instant
OffsetDateTime
ZonedDateTime
LocalDateTime
LocalDate
LocalTime
Offset
Interval
Duration
PeriodBuilder
(see note below)OffsetDate
OffsetTime
XML serialization raises a few ugly issues which users should be aware of. Most importantly, it's designed for
mutable types with a parameterless constructor - which is somewhat problematic for a library composed primarily
of immutable types. However, as all structs implicitly have a parameterless constructor, and the this
expression
is effectively a ref
parameter in methods in structs, all the value types listed above have ReadXml
methods which effectively end with:
this = valueParsedFromXml;
This looks somewhat alarming, but is effectively sensible. It doesn't mutate the existing value so much as replace it with a completely new value. XML serialization has been performed using explicit interface implementation in all types, so it's very unlikely that you'll end up accidentally changing the value of a variable when you didn't expect to.
Period
presents a rather greater challenge - as a reference type, we don't have the luxury of reassigning this
, and we don't have a parameterless
constructor (nor do we want one). PeriodBuilder
is a mutable type with a parameterless constructor, however, making it ideal for serialization. Typically
other classes wouldn't contain a PeriodBuilder
property or field of course - but by exposing a "proxy" property solely for XML serialization purposes,
an appropriate effect can be achieved. The class might look something like this:
/// <summary>
/// Sample class to show how to serialize classes which have Period properties.
/// </summary>
public class XmlSerializationDemo
{
/// <summary>
/// Use this property!
/// </summary>
[XmlIgnore]
public Period Period { get; set; }
/// <summary>
/// Don't use this property! It's only present for the purposes of XML serialization.
/// </summary>
[XmlElement("period")]
[EditorBrowsable(EditorBrowsableState.Never)]
public PeriodBuilder PeriodBuilder
{
get { return Period == null ? null : Period.ToBuilder(); }
set { Period = value == null ? null : value.Build(); }
}
}
When serializing, the XmlSerializer
will fetch the value from the PeriodBuilder
property, which will in turn fetch the period from the Period
property and convert it into a builder.
When deserializing, the XmlSerializer
will set the value of PeriodBuilder
from the XML - and the property will in turn build the builder and set the Period
property.
In an ideal world we'd also decorate the PeriodBuilder
property with [Obsolete("Only present for serialization", true)]
but unfortunately the XML serializer ignores obsolete
properties, which would entirely defeat the point of the exercise.
It's also worth noting that the XML serialization in .NET doesn't allow any user-defined types to be
serialized via attributes. So while it would make perfect sense to be able to apply
[XmlAttribute]
to a particular property and have it serialized as an attribute, in reality you need to use
[XmlElement]
instead. There's nothing Noda Time can do here; it's just a limitation of .NET XML serialization.
Finally, serialization of ZonedDateTime
comes with the tricky question of which IDateTimeZoneProvider
to use in order to convert a time zone ID specified in the XML into a DateTimeZone
.
Noda Time has no concept of a "time zone provider registry" nor does a time zone "know" which provider it came from. Likewise XML serialization doesn't allow any particular local context to be
specified as part of the deserialization process. As a horrible workaround, a static (thread-safe) DateTimeZoneProviders.Serialization
property is used. This would normally be set on application start-up,
and will be consulted when deserializing ZonedDateTime
values. It defaults (lazily) to using DateTimeZoneProviders.Tzdb
.
While these details are undoubtedly unpleasant, it is hoped that they strike a pragmatic balance, providing a significant benefit to those who require XML serialization support, while staying out of the way of those who don't.
Most serialized forms just consist of element text using a specified text handling pattern, as described below. Types which support multiple calendar systems additionally use the calendar
attribute for the calendar system ID (but only when the calendar system of the value isn't the ISO calendar), while ZonedDateTime
always uses an extra zone
attribute for the time zone ID.
PeriodBuilder
and Interval
are somewhat different: PeriodBuilder
uses the round-trip text representation of the Period
that would be built by it, while Interval
has only start
and end
attributes, each of which is represented as the respective Instant
converted using the extended ISO pattern. (If an interval has no start or has no end, due to extending to the start or end of time,
the corresponding attribute is omitted.)
Type | Description or pattern | Example |
Instant |
Extended ISO pattern | <value>2013-07-26T16:45:20.123456789Z</value> |
LocalDate |
ISO pattern, optional calendar | <value calendar="Gregorian 3">2013-07-26</value> |
LocalTime |
Extended ISO pattern | <value>16:45:20.123456789</value> |
LocalDateTime |
Extended ISO pattern, optional calendar | <value calendar="Gregorian 3">2013-07-26T16:45:20.123456789</value> |
OffsetDateTime |
RFC 3339 pattern (extended ISO but with offset in form +/-HH:mm or Z), optional calendar | <value calendar="Gregorian 3">2013-07-26T16:45:20.123456789+01:00</value> |
ZonedDateTime |
Extended ISO pattern, optional calendar | <value calendar="Gregorian 3" zone="Europe/London">2013-07-26T16:45:20.123456789+01</value> |
Interval |
Extended ISO pattern, optional calendar | <value start="2013-07-26T16:45:20.123456789Z" end="2013-07-26T17:45:20.123456789Z" /> |
Offset |
General pattern | <value>+01</value> |
PeriodBuilder |
Round-trip pattern | <value>P10Y5DT3H20S</value> |
Duration |
Round-trip pattern | <value>1:12:34:56.123456789</value> |
OffsetDate |
General ISO pattern | <value>2013-07-26+01:00</value> |
OffsetTime |
Extended ISO pattern | <value>T16:45:20.123456789+01:00</value> |
The Noda Time project itself has support for Json.NET, System.Text.Json and Google Protocol Buffers as individual packages.
Additionally, there is a separate project for ServiceStack.Text support, which is not maintained by the Noda Time authors.
Json.NET is supported within the NodaTime.Serialization.JsonNet
assembly and the namespace
of the same name.
It can be installed using NuGet, again with a package name of NodaTime.Serialization.JsonNet
. See the
installation guide for more details.
An extension method of ConfigureForNodaTime
is provided on both JsonSerializer
and
JsonSerializerSettings
. Alternatively, the NodaConverters
type provides public static read-only fields
for individual converters. (All converters are immutable.)
Custom converters can be created easily from patterns using NodaPatternConverter
.
The NodaJsonSettings
class can be used to specify converters for individual types, as well as the time zone provider to use.
This can then be passed to the ConfigureForNodaTime
extension methods. For example, to use the normalizing ISO period converter
when serializing periods, you might write:
var settings = new NodaJsonSettings
{
PeriodConverter = NodaConverters.NormalizingIsoPeriodConverter
};
jsonSerializer.ConfigureForNodaTime(settings);
Note that while individual converters are immutable, NodaJsonSettings
is deliberately mutable; the expected
usage is for it to be constructed, passed into ConfigureForNodaTime
, then discarded. (The ConfigureForNodaTime
method doesn't mutate it itself, and keeps no further reference to it - you can retain a settings object if you
want.)
Please ensure that all relevant JSON handlers are configured appropriately. In some cases there may be more than
one involved, possibly one for reading and one for writing, depending on your configuration. For ASP.NET using
HttpConfiguration
, you probably want to configure HttpConfiguration.Formatters.JsonFormatter.SerializerSettings
.
For ASP.NET Core, this configuration would normally be handled by calling the AddJsonFormatters
method within your application's
ConfigureServices
method. For example:
services.AddJsonFormatters(settings => settings.ConfigureForNodaTime(DateTimeZoneProviders.Tzdb));
Between releases 4.0 and 4.5.11, Json.NET introduced automatic date parsing: by default, if the parser detects a value which looks like a date, it will automatically convert it to a DateTime
or (optionally) to a DateTimeOffset
. In order to give Noda Time control over the serialization, this must be disabled in JsonSerializerSettings
or JsonSerializer
, like this:
settings.DateParseHandling = DateParseHandling.None;
(The same code is valid for both JsonSerializer
and JsonSerializerSettings
.)
The ConfigureForNodaTime
extension methods described above both disable automatic date parsing automatically.
All default patterns use the invariant culture.
Instant
: an ISO-8601 pattern extended to handle fractional seconds: uuuu'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFFF'Z'
LocalDate
: ISO-8601 date pattern: uuuu'-'MM'-'dd
LocalTime
: ISO-8601 time pattern, extended to handle fractional seconds: HH':'mm':'ss.FFFFFFFFF
LocalDateTime
: ISO-8601 date/time pattern with no time zone specifier, extended to handle fractional seconds: uuuu'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFFF
OffsetDateTime
: RFC3339 pattern:
uuuu'-'MM'-'dd'T'HH':'mm':'ss;FFFFFFFFFo<Z+HH:mm>
; note that the
offset always includes hours and minutes, to conform with ECMA-262.
It does not support round-tripping offsets with sub-minute components.ZonedDateTime
: As OffsetDateTime
, but with a time zone ID at the end: uuuu'-'MM'-'dd'T'HH':'mm':'ss;FFFFFFFFFo<G> z
Interval
: A compound object of the form { Start: xxx, End: yyy }
where xxx
and yyy
are represented however the serializer
sees fit. (Typically using the default representation above.) An alternative form can be specified using the WithIsoIntervalConverter
extension method on JsonSerializer
/JsonSerializerSettings
. If an interval is infinite in either direction, the corresponding
property is omitted.Offset
: general pattern, e.g. +05
or -03:30
Period
: The round-trip period pattern; NodaConverters.NormalizingIsoPeriodConverter
provides a converter using the normalizing ISO-like patternDuration
: A duration pattern of -H:mm:ss.FFFFFFFFF
(like the standard round-trip pattern, but starting with hours instead of days)DateTimeZone
: The ID, as a stringDateTimeZone
representation.See the API reference documentation for more details.
System.Text.Json is a high performance JSON serialization framework introduced by Microsoft at the same time as .NET Core 3.0.
Support is provided by the NodaTime.Serialization.SystemTextJson
NuGet package. It is configured for Noda Time much like the Json.NET package, with a ConfigureForNodaTime
extension method targeting
the JsonSerializerOptions
type. For example:
var original = new Model();
var options = new JsonSerializerOptions().ConfigureForNodaTime(DateTimeZoneProviders.Tzdb);
string json = JsonSerializer.Serialize(original, options);
Console.WriteLine(json);
var deserialized = JsonSerializer.Deserialize<Model>(json, options);
The same sort of configuration via NodaJsonSettings
is available for System.Text.Json as for Newtonsoft.Json.
See the API reference documentation for more details.
The Google.Protobuf package includes various date/time representations as "well-known types", and Google.Api.CommonProtos contains some more. The NodaTime.Serialization.Protobuf package provides conversions as extension methods between Noda Time and the protobuf representations.
For example, converting from Noda Time to Protobuf representation:
ToDate(LocalDate)
ToProtobufDayOfWeek(IsoDayOfWeek)
ToProtobufDuration(Duration)
ToTimeOfDay(LocalTime)
ToTimestamp(Instant)
And from Protobuf to Noda Time:
ToInstant(Timestamp)
ToIsoDayOfWeek(DayOfWeek)
ToLocalDate(Date)
ToLocalTime(TimeOfDay)
ToNodaDuration(Duration)
See the API reference documentation for more details.
The protobuf-net project (another implementation of Protocol Buffers) also supports NodaTime via the protobuf-net.NodaTime package.
ServiceStack.Text is supported via a separate project on GitHub. There is a NuGet package, and documentation is on the project page. The package supports Noda Time version ≥ 1.2.0 and ServiceStack.Text ≥ 3.9.44.
The JSON representation is the same as that used by Json.NET above.
Binary serialization was removed from Noda Time 3.0.