m
This commit is contained in:
@@ -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: 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user