Files
2026-06-04 11:42:34 +02:00

22 lines
903 B
C#

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