Files
2026-06-04 11:42:34 +02:00

14 lines
378 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 objects state to unchanged by rejecting the modifications.</summary>
// Token: 0x060004F2 RID: 1266
void RejectChanges();
}
}