using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies how to treat the time value when converting between string and .
// Token: 0x020000DE RID: 222
[Token(Token = "0x20000DE")]
public enum XmlDateTimeSerializationMode
{
/// Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time.
// Token: 0x04000606 RID: 1542
[Token(Token = "0x4000606")]
Local,
/// Treat as a UTC. If the object represents a local time, it is converted to a UTC.
// Token: 0x04000607 RID: 1543
[Token(Token = "0x4000607")]
Utc,
/// Treat as a local time if a is being converted to a string.
// Token: 0x04000608 RID: 1544
[Token(Token = "0x4000608")]
Unspecified,
/// Time zone information should be preserved when converting.
// Token: 0x04000609 RID: 1545
[Token(Token = "0x4000609")]
RoundtripKind
}
}