using System;
namespace System.ComponentModel
{
/// Provides the functionality to offer custom error information that a user interface can bind to.
// Token: 0x0200008B RID: 139
public interface IDataErrorInfo
{
/// 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: 0x17000148 RID: 328
// (get) Token: 0x060004E9 RID: 1257
string Error { get; }
/// Gets the error message for the property with the given name.
/// The error message for the property. The default is an empty string ("").
/// The name of the property whose error message to get.
// Token: 0x17000149 RID: 329
string this[string columnName] { get; }
}
}