This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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 objects 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 objects state to unchanged by accepting the modifications.</summary>
// Token: 0x060004C8 RID: 1224
void AcceptChanges();
}
}