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

30 lines
1020 B
C#

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