14 lines
378 B
C#
14 lines
378 B
C#
using System;
|
||
|
||
namespace System.ComponentModel
|
||
{
|
||
/// <summary>Provides support for rolling back the changes</summary>
|
||
// Token: 0x0200008F RID: 143
|
||
public interface IRevertibleChangeTracking : IChangeTracking
|
||
{
|
||
/// <summary>Resets the object’s state to unchanged by rejecting the modifications.</summary>
|
||
// Token: 0x060004F2 RID: 1266
|
||
void RejectChanges();
|
||
}
|
||
}
|