This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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; }
}
}