Files
2026-06-04 11:42:34 +02:00

22 lines
803 B
C#

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();
}
}