using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides the functionality to offer custom error information that a user interface can bind to.
// Token: 0x02000132 RID: 306
[Token(Token = "0x2000132")]
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: 0x1700016A RID: 362
[Token(Token = "0x1700016A")]
string this[string columnName]
{
[Token(Token = "0x60007B2")]
[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: 0x1700016B RID: 363
// (get) Token: 0x060007B3 RID: 1971
[Token(Token = "0x1700016B")]
string Error
{
[Token(Token = "0x60007B3")]
[Address(Slot = "1")]
get;
}
}
}