Files
2026-04-10 22:50:51 +02:00

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: 0x0200010C RID: 268
[Token(Token = "0x200010C")]
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: 0x040004A9 RID: 1193
[Token(Token = "0x40004A9")]
Fill,
/// <summary>Indicates that a method is used for a data operation that retrieves data.</summary>
// Token: 0x040004AA RID: 1194
[Token(Token = "0x40004AA")]
Select,
/// <summary>Indicates that a method is used for a data operation that updates data.</summary>
// Token: 0x040004AB RID: 1195
[Token(Token = "0x40004AB")]
Update,
/// <summary>Indicates that a method is used for a data operation that inserts data.</summary>
// Token: 0x040004AC RID: 1196
[Token(Token = "0x40004AC")]
Insert,
/// <summary>Indicates that a method is used for a data operation that deletes data.</summary>
// Token: 0x040004AD RID: 1197
[Token(Token = "0x40004AD")]
Delete
}
}