This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
namespace System.ComponentModel
{
/// <summary>Provides functionality to commit or rollback changes to an object that is used as a data source.</summary>
// Token: 0x0200008C RID: 140
public interface IEditableObject
{
/// <summary>Begins an edit on an object.</summary>
// Token: 0x060004EB RID: 1259
void BeginEdit();
/// <summary>Discards changes since the last <see cref="M:System.ComponentModel.IEditableObject.BeginEdit" /> call.</summary>
// Token: 0x060004EC RID: 1260
void CancelEdit();
/// <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: 0x060004ED RID: 1261
void EndEdit();
}
}