20 lines
735 B
C#
20 lines
735 B
C#
using System;
|
||
|
||
namespace System.ComponentModel
|
||
{
|
||
/// <summary>Defines the mechanism for querying the object for changes and resetting of the changed status.</summary>
|
||
// Token: 0x02000086 RID: 134
|
||
public interface IChangeTracking
|
||
{
|
||
/// <summary>Gets the object's changed status.</summary>
|
||
/// <returns>true if the object’s content has changed since the last call to <see cref="M:System.ComponentModel.IChangeTracking.AcceptChanges" />; otherwise, false.</returns>
|
||
// Token: 0x17000145 RID: 325
|
||
// (get) Token: 0x060004C7 RID: 1223
|
||
bool IsChanged { get; }
|
||
|
||
/// <summary>Resets the object’s state to unchanged by accepting the modifications.</summary>
|
||
// Token: 0x060004C8 RID: 1224
|
||
void AcceptChanges();
|
||
}
|
||
}
|