This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides functionality to commit or rollback changes to an object that is used as a data source.</summary>
// Token: 0x02000137 RID: 311
[Token(Token = "0x2000137")]
public interface IEditableObject
{
/// <summary>Begins an edit on an object.</summary>
// Token: 0x060007CA RID: 1994
[Token(Token = "0x60007CA")]
[Address(Slot = "0")]
void BeginEdit();
/// <summary>Pushes changes since the last <see cref="M:System.ComponentModel.IEditableObject.BeginEdit" /> or <see cref="M:System.ComponentModel.IBindingList.AddNew" /> call into the underlying object.</summary>
// Token: 0x060007CB RID: 1995
[Token(Token = "0x60007CB")]
[Address(Slot = "1")]
void EndEdit();
/// <summary>Discards changes since the last <see cref="M:System.ComponentModel.IEditableObject.BeginEdit" /> call.</summary>
// Token: 0x060007CC RID: 1996
[Token(Token = "0x60007CC")]
[Address(Slot = "2")]
void CancelEdit();
}
}