33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> event.</summary>
|
|
// Token: 0x020000B4 RID: 180
|
|
public class PropertyChangedEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> class.</summary>
|
|
/// <param name="propertyName">The name of the property that changed. </param>
|
|
// Token: 0x060005D0 RID: 1488 RVA: 0x0000F000 File Offset: 0x0000D200
|
|
public PropertyChangedEventArgs(string name)
|
|
{
|
|
this.propertyName = name;
|
|
}
|
|
|
|
/// <summary>Gets the name of the property that changed.</summary>
|
|
/// <returns>The name of the property that changed.</returns>
|
|
// Token: 0x17000185 RID: 389
|
|
// (get) Token: 0x060005D1 RID: 1489 RVA: 0x0000F010 File Offset: 0x0000D210
|
|
public string PropertyName
|
|
{
|
|
get
|
|
{
|
|
return this.propertyName;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040001BD RID: 445
|
|
private string propertyName;
|
|
}
|
|
}
|