34 lines
1.5 KiB
C#
34 lines
1.5 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Gets the state of a <see cref="T:System.Data.DataRow" /> object.</summary>
|
|
// Token: 0x02000033 RID: 51
|
|
[Token(Token = "0x2000033")]
|
|
[Flags]
|
|
public enum DataRowState
|
|
{
|
|
/// <summary>The row has been created but is not part of any <see cref="T:System.Data.DataRowCollection" />. A <see cref="T:System.Data.DataRow" /> is in this state immediately after it has been created and before it is added to a collection, or if it has been removed from a collection.</summary>
|
|
// Token: 0x040000A4 RID: 164
|
|
[Token(Token = "0x40000A4")]
|
|
Detached = 1,
|
|
/// <summary>The row has not changed since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</summary>
|
|
// Token: 0x040000A5 RID: 165
|
|
[Token(Token = "0x40000A5")]
|
|
Unchanged = 2,
|
|
/// <summary>The row has been added to a <see cref="T:System.Data.DataRowCollection" />, and <see cref="M:System.Data.DataRow.AcceptChanges" /> has not been called.</summary>
|
|
// Token: 0x040000A6 RID: 166
|
|
[Token(Token = "0x40000A6")]
|
|
Added = 4,
|
|
/// <summary>The row was deleted using the <see cref="M:System.Data.DataRow.Delete" /> method of the <see cref="T:System.Data.DataRow" />.</summary>
|
|
// Token: 0x040000A7 RID: 167
|
|
[Token(Token = "0x40000A7")]
|
|
Deleted = 8,
|
|
/// <summary>The row has been modified and <see cref="M:System.Data.DataRow.AcceptChanges" /> has not been called.</summary>
|
|
// Token: 0x040000A8 RID: 168
|
|
[Token(Token = "0x40000A8")]
|
|
Modified = 16
|
|
}
|
|
}
|