16 lines
436 B
C#
16 lines
436 B
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Notifies clients that a property value has changed.</summary>
|
|
// Token: 0x0200008E RID: 142
|
|
public interface INotifyPropertyChanged
|
|
{
|
|
/// <summary>Occurs when a property value changes.</summary>
|
|
// Token: 0x14000016 RID: 22
|
|
// (add) Token: 0x060004F0 RID: 1264
|
|
// (remove) Token: 0x060004F1 RID: 1265
|
|
event PropertyChangedEventHandler PropertyChanged;
|
|
}
|
|
}
|