using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides the functionality to offer custom error information that a user interface can bind to.
// Token: 0x02000136 RID: 310
[Token(Token = "0x2000136")]
public interface IDataErrorInfo
{
/// Gets the error message for the property with the given name.
/// The name of the property whose error message to get.
/// The error message for the property. The default is an empty string ("").
// Token: 0x1700016E RID: 366
[Token(Token = "0x1700016E")]
string this[string columnName]
{
[Token(Token = "0x60007C8")]
[Address(Slot = "0")]
get;
}
/// Gets an error message indicating what is wrong with this object.
/// An error message indicating what is wrong with this object. The default is an empty string ("").
// Token: 0x1700016F RID: 367
// (get) Token: 0x060007C9 RID: 1993
[Token(Token = "0x1700016F")]
string Error
{
[Token(Token = "0x60007C9")]
[Address(Slot = "1")]
get;
}
}
}