41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.ComponentModel.INotifyDataErrorInfo.ErrorsChanged" /> event.</summary>
|
|
// Token: 0x02000104 RID: 260
|
|
[Token(Token = "0x2000104")]
|
|
public class DataErrorsChangedEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataErrorsChangedEventArgs" /> class.</summary>
|
|
/// <param name="propertyName">The name of the property that has an error. <see langword="null" /> or <see cref="F:System.String.Empty" /> if the error is object-level.</param>
|
|
// Token: 0x06000661 RID: 1633 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000661")]
|
|
[Address(RVA = "0xB9ADE0", Offset = "0xB99DE0", VA = "0x180B9ADE0")]
|
|
public DataErrorsChangedEventArgs(string propertyName)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the name of the property that has an error.</summary>
|
|
/// <returns>The name of the property that has an error. <see langword="null" /> or <see cref="F:System.String.Empty" /> if the error is object-level.</returns>
|
|
// Token: 0x1700011F RID: 287
|
|
// (get) Token: 0x06000662 RID: 1634 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700011F")]
|
|
public virtual string PropertyName
|
|
{
|
|
[Token(Token = "0x6000662")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000490 RID: 1168
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000490")]
|
|
private readonly string propertyName;
|
|
}
|
|
}
|