Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/XmlDateTimeSerializationMode.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x020000DE RID: 222
[Token(Token = "0x20000DE")]
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: 0x04000606 RID: 1542
[Token(Token = "0x4000606")]
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: 0x04000607 RID: 1543
[Token(Token = "0x4000607")]
Utc,
/// <summary>Treat as a local time if a <see cref="T:System.DateTime" /> is being converted to a string.</summary>
// Token: 0x04000608 RID: 1544
[Token(Token = "0x4000608")]
Unspecified,
/// <summary>Time zone information should be preserved when converting.</summary>
// Token: 0x04000609 RID: 1545
[Token(Token = "0x4000609")]
RoundtripKind
}
}