Prevent timezone conversion on deserialization of DateTime value(防止对 DateTime 值的反序列化进行时区转换)
问题描述
我有一个使用 XmlSerializer
序列化/反序列化的类.此类包含 DateTime
字段.
I have a class that I serialize/deserialize using XmlSerializer
. This class contains a DateTime
field.
序列化时,DateTime
字段由包含与 GMT 的偏移量的字符串表示,例如 2010-05-05T09:13:45-05:00
.反序列化时,这些时间将转换为执行反序列化的机器的本地时间.
When serialized, the DateTime
field is represented by a string that includes the offset from GMT, e.g 2010-05-05T09:13:45-05:00
. When deserialized, these times are converted to the local time of the machine performing the deserialization.
出于不值得解释的原因,我想阻止这种时区转换发生.序列化发生在野外,存在这个类的多个版本.反序列化发生在我控制的服务器上.因此,这似乎最好在反序列化期间处理.
For reasons not worth explaining, I'd like to prevent this timezone conversion from happening. The serialization happens out in the wild, where multiple version of this class exist. The deserialization happens on a server that's under my control. As such, it seems like this would be best handled during deserialization.
除了实现 IXmlSerializable
并手动"完成所有反序列化之外,我怎样才能做到这一点?
How can I make this happen, other than implementing IXmlSerializable
and doing all of the deserialization "by hand?"
推荐答案
您可以将其解析为 DateTimeOffset
而不是解析为 DateTime
并使用 DateTimeOffset.DateTime
属性忽略时区.像这样:
Instead of parsing as a DateTime
you can parse it as a DateTimeOffset
and use the DateTimeOffset.DateTime
property to ignore the timezone. Like this:
[XmlIgnore()]
public DateTime Time { get; set; }
[XmlElement(ElementName = "Time")]
public string XmlTime
{
get { return XmlConvert.ToString(Time, XmlDateTimeSerializationMode.RoundtripKind); }
set { Time = DateTimeOffset.Parse(value).DateTime; }
}
这篇关于防止对 DateTime 值的反序列化进行时区转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:防止对 DateTime 值的反序列化进行时区转换


- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01