scripts
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user