46 lines
1.4 KiB
C#
46 lines
1.4 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Describes an action performed on a <see cref="T:System.Data.DataRow" />.</summary>
|
|
// Token: 0x0200002C RID: 44
|
|
[Token(Token = "0x200002C")]
|
|
[Flags]
|
|
public enum DataRowAction
|
|
{
|
|
/// <summary>The row has not changed.</summary>
|
|
// Token: 0x04000096 RID: 150
|
|
[Token(Token = "0x4000096")]
|
|
Nothing = 0,
|
|
/// <summary>The row was deleted from the table.</summary>
|
|
// Token: 0x04000097 RID: 151
|
|
[Token(Token = "0x4000097")]
|
|
Delete = 1,
|
|
/// <summary>The row has changed.</summary>
|
|
// Token: 0x04000098 RID: 152
|
|
[Token(Token = "0x4000098")]
|
|
Change = 2,
|
|
/// <summary>The most recent change to the row has been rolled back.</summary>
|
|
// Token: 0x04000099 RID: 153
|
|
[Token(Token = "0x4000099")]
|
|
Rollback = 4,
|
|
/// <summary>The changes to the row have been committed.</summary>
|
|
// Token: 0x0400009A RID: 154
|
|
[Token(Token = "0x400009A")]
|
|
Commit = 8,
|
|
/// <summary>The row has been added to the table.</summary>
|
|
// Token: 0x0400009B RID: 155
|
|
[Token(Token = "0x400009B")]
|
|
Add = 16,
|
|
/// <summary>The original version of the row has been changed.</summary>
|
|
// Token: 0x0400009C RID: 156
|
|
[Token(Token = "0x400009C")]
|
|
ChangeOriginal = 32,
|
|
/// <summary>The original and the current versions of the row have been changed.</summary>
|
|
// Token: 0x0400009D RID: 157
|
|
[Token(Token = "0x400009D")]
|
|
ChangeCurrentAndOriginal = 64
|
|
}
|
|
}
|