36 lines
1.1 KiB
C#
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: 0x02000136 RID: 310
|
|
[Token(Token = "0x2000136")]
|
|
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: 0x1700016E RID: 366
|
|
[Token(Token = "0x1700016E")]
|
|
string this[string columnName]
|
|
{
|
|
[Token(Token = "0x60007C8")]
|
|
[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: 0x1700016F RID: 367
|
|
// (get) Token: 0x060007C9 RID: 1993
|
|
[Token(Token = "0x1700016F")]
|
|
string Error
|
|
{
|
|
[Token(Token = "0x60007C9")]
|
|
[Address(Slot = "1")]
|
|
get;
|
|
}
|
|
}
|
|
}
|