31 lines
981 B
C#
31 lines
981 B
C#
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: 0x02000131 RID: 305
|
|
[Token(Token = "0x2000131")]
|
|
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: 0x1700016B RID: 363
|
|
// (get) Token: 0x060007A6 RID: 1958
|
|
[Token(Token = "0x1700016B")]
|
|
bool IsChanged
|
|
{
|
|
[Token(Token = "0x60007A6")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
|
|
/// <summary>Resets the object's state to unchanged by accepting the modifications.</summary>
|
|
// Token: 0x060007A7 RID: 1959
|
|
[Token(Token = "0x60007A7")]
|
|
[Address(Slot = "1")]
|
|
void AcceptChanges();
|
|
}
|
|
}
|