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: 0x02000108 RID: 264
|
|
[Token(Token = "0x2000108")]
|
|
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: 0x06000677 RID: 1655 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000677")]
|
|
[Address(RVA = "0x49E120", Offset = "0x49CF20", VA = "0x18049E120")]
|
|
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: 0x17000123 RID: 291
|
|
// (get) Token: 0x06000678 RID: 1656 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000123")]
|
|
public virtual string PropertyName
|
|
{
|
|
[Token(Token = "0x6000678")]
|
|
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "4")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0400049D RID: 1181
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400049D")]
|
|
private readonly string propertyName;
|
|
}
|
|
}
|