Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

36 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides the functionality to offer custom error information that a user interface can bind to.</summary>
// Token: 0x02000132 RID: 306
[Token(Token = "0x2000132")]
public interface IDataErrorInfo
{
/// <summary>Gets the error message for the property with the given name.</summary>
/// <param name="columnName">The name of the property whose error message to get.</param>
/// <returns>The error message for the property. The default is an empty string ("").</returns>
// Token: 0x1700016A RID: 362
[Token(Token = "0x1700016A")]
string this[string columnName]
{
[Token(Token = "0x60007B2")]
[Address(Slot = "0")]
get;
}
/// <summary>Gets an error message indicating what is wrong with this object.</summary>
/// <returns>An error message indicating what is wrong with this object. The default is an empty string ("").</returns>
// Token: 0x1700016B RID: 363
// (get) Token: 0x060007B3 RID: 1971
[Token(Token = "0x1700016B")]
string Error
{
[Token(Token = "0x60007B3")]
[Address(Slot = "1")]
get;
}
}
}