This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Defines the mechanism for querying the object for changes and resetting of the changed status.</summary>
// Token: 0x0200012D RID: 301
[Token(Token = "0x200012D")]
public interface IChangeTracking
{
/// <summary>Gets the object's changed status.</summary>
/// <returns>
/// <see langword="true" /> if the object's content has changed since the last call to <see cref="M:System.ComponentModel.IChangeTracking.AcceptChanges" />; otherwise, <see langword="false" />.</returns>
// Token: 0x17000167 RID: 359
// (get) Token: 0x06000790 RID: 1936
[Token(Token = "0x17000167")]
bool IsChanged
{
[Token(Token = "0x6000790")]
[Address(Slot = "0")]
get;
}
/// <summary>Resets the object's state to unchanged by accepting the modifications.</summary>
// Token: 0x06000791 RID: 1937
[Token(Token = "0x6000791")]
[Address(Slot = "1")]
void AcceptChanges();
}
}