Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000133 RID: 307
[Token(Token = "0x2000133")]
public interface IEditableObject
{
/// <summary>Begins an edit on an object.</summary>
// Token: 0x060007B4 RID: 1972
[Token(Token = "0x60007B4")]
[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: 0x060007B5 RID: 1973
[Token(Token = "0x60007B5")]
[Address(Slot = "1")]
void EndEdit();
/// <summary>Discards changes since the last <see cref="M:System.ComponentModel.IEditableObject.BeginEdit" /> call.</summary>
// Token: 0x060007B6 RID: 1974
[Token(Token = "0x60007B6")]
[Address(Slot = "2")]
void CancelEdit();
}
}