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