Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

29 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Describes the version of a <see cref="T:System.Data.DataRow" />.</summary>
// Token: 0x02000034 RID: 52
[Token(Token = "0x2000034")]
public enum DataRowVersion
{
/// <summary>The row contains its original values.</summary>
// Token: 0x040000AA RID: 170
[Token(Token = "0x40000AA")]
Original = 256,
/// <summary>The row contains current values.</summary>
// Token: 0x040000AB RID: 171
[Token(Token = "0x40000AB")]
Current = 512,
/// <summary>The row contains a proposed value.</summary>
// Token: 0x040000AC RID: 172
[Token(Token = "0x40000AC")]
Proposed = 1024,
/// <summary>The default version of <see cref="T:System.Data.DataRowState" />. For a <see langword="DataRowState" /> value of <see langword="Added" />, <see langword="Modified" /> or <see langword="Deleted" />, the default version is <see langword="Current" />. For a <see cref="T:System.Data.DataRowState" /> value of <see langword="Detached" />, the version is <see langword="Proposed" />.</summary>
// Token: 0x040000AD RID: 173
[Token(Token = "0x40000AD")]
Default = 1536
}
}