Files
Apr2020-Cpp2Il-Dump/System.Xml/XmlDateTimeSerializationMode.cs
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

29 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime" />.</summary>
// Token: 0x02000067 RID: 103
[Token(Token = "0x2000067")]
public enum XmlDateTimeSerializationMode
{
/// <summary>Treat as local time. If the <see cref="T:System.DateTime" /> object represents a Coordinated Universal Time (UTC), it is converted to the local time.</summary>
// Token: 0x0400023F RID: 575
[Token(Token = "0x400023F")]
Local,
/// <summary>Treat as a UTC. If the <see cref="T:System.DateTime" /> object represents a local time, it is converted to a UTC.</summary>
// Token: 0x04000240 RID: 576
[Token(Token = "0x4000240")]
Utc,
/// <summary>Treat as a local time if a <see cref="T:System.DateTime" /> is being converted to a string.</summary>
// Token: 0x04000241 RID: 577
[Token(Token = "0x4000241")]
Unspecified,
/// <summary>Time zone information should be preserved when converting.</summary>
// Token: 0x04000242 RID: 578
[Token(Token = "0x4000242")]
RoundtripKind
}
}