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

20 lines
735 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>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();
}
}