This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides the functionality to offer custom error information that a user interface can bind to.</summary>
// Token: 0x02000136 RID: 310
[Token(Token = "0x2000136")]
public interface IDataErrorInfo
{
/// <summary>Gets the error message for the property with the given name.</summary>
/// <param name="columnName">The name of the property whose error message to get.</param>
/// <returns>The error message for the property. The default is an empty string ("").</returns>
// Token: 0x1700016E RID: 366
[Token(Token = "0x1700016E")]
string this[string columnName]
{
[Token(Token = "0x60007C8")]
[Address(Slot = "0")]
get;
}
/// <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: 0x1700016F RID: 367
// (get) Token: 0x060007C9 RID: 1993
[Token(Token = "0x1700016F")]
string Error
{
[Token(Token = "0x60007C9")]
[Address(Slot = "1")]
get;
}
}
}