18 lines
483 B
C#
18 lines
483 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides support for rolling back the changes</summary>
|
|
// Token: 0x0200013D RID: 317
|
|
[Token(Token = "0x200013D")]
|
|
public interface IRevertibleChangeTracking : IChangeTracking
|
|
{
|
|
/// <summary>Resets the object's state to unchanged by rejecting the modifications.</summary>
|
|
// Token: 0x060007C7 RID: 1991
|
|
[Token(Token = "0x60007C7")]
|
|
[Address(Slot = "0")]
|
|
void RejectChanges();
|
|
}
|
|
}
|