using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides data for the event.
// Token: 0x02000171 RID: 369
[Token(Token = "0x2000171")]
public class PropertyChangedEventArgs : EventArgs
{
/// Initializes a new instance of the class.
/// The name of the property that changed.
// Token: 0x06000953 RID: 2387 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000953")]
[Address(RVA = "0xC67CF0", Offset = "0xC66CF0", VA = "0x180C67CF0")]
public PropertyChangedEventArgs(string propertyName)
{
}
/// Gets the name of the property that changed.
/// The name of the property that changed.
// Token: 0x170001D0 RID: 464
// (get) Token: 0x06000954 RID: 2388 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001D0")]
public virtual string PropertyName
{
[Token(Token = "0x6000954")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "4")]
get
{
return null;
}
}
// Token: 0x04000581 RID: 1409
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000581")]
private readonly string propertyName;
}
}