41 lines
1.4 KiB
C#
41 lines
1.4 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> event.</summary>
|
|
// Token: 0x02000175 RID: 373
|
|
[Token(Token = "0x2000175")]
|
|
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: 0x06000969 RID: 2409 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000969")]
|
|
[Address(RVA = "0x4FD9A0", Offset = "0x4FC7A0", VA = "0x1804FD9A0")]
|
|
public PropertyChangedEventArgs(string propertyName)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the name of the property that changed.</summary>
|
|
/// <returns>The name of the property that changed.</returns>
|
|
// Token: 0x170001D4 RID: 468
|
|
// (get) Token: 0x0600096A RID: 2410 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170001D4")]
|
|
public virtual string PropertyName
|
|
{
|
|
[Token(Token = "0x600096A")]
|
|
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0400058E RID: 1422
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400058E")]
|
|
private readonly string propertyName;
|
|
}
|
|
}
|