Is it possible to get Timestamp in output template as DateTimeKind.Utc?
问题 Currently when I use {Timestamp} in an outputTemplate it appears to have been generated by DateTime.Now and therefore being of DateTimeKind.Local flavor since, when I give it an "o" specifier it produces output similar to 2016-02-12T09:51:34.4477761-08:00 What I'd like to get instead for the above example is 2016-02-12T17:51:34.4477761Z , which would have been produced had the Timestamp been of DateTimeKind.Utc . Update It looks like it is actually DateTimeOffset that gets instantiated there