33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Identifies the type of data operation performed by a method, as specified by the <see cref="T:System.ComponentModel.DataObjectMethodAttribute" /> applied to the method.</summary>
|
|
// Token: 0x02000108 RID: 264
|
|
[Token(Token = "0x2000108")]
|
|
public enum DataObjectMethodType
|
|
{
|
|
/// <summary>Indicates that a method is used for a data operation that fills a <see cref="T:System.Data.DataSet" /> object.</summary>
|
|
// Token: 0x0400049C RID: 1180
|
|
[Token(Token = "0x400049C")]
|
|
Fill,
|
|
/// <summary>Indicates that a method is used for a data operation that retrieves data.</summary>
|
|
// Token: 0x0400049D RID: 1181
|
|
[Token(Token = "0x400049D")]
|
|
Select,
|
|
/// <summary>Indicates that a method is used for a data operation that updates data.</summary>
|
|
// Token: 0x0400049E RID: 1182
|
|
[Token(Token = "0x400049E")]
|
|
Update,
|
|
/// <summary>Indicates that a method is used for a data operation that inserts data.</summary>
|
|
// Token: 0x0400049F RID: 1183
|
|
[Token(Token = "0x400049F")]
|
|
Insert,
|
|
/// <summary>Indicates that a method is used for a data operation that deletes data.</summary>
|
|
// Token: 0x040004A0 RID: 1184
|
|
[Token(Token = "0x40004A0")]
|
|
Delete
|
|
}
|
|
}
|