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