Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IDataErrorInfo.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a37627d07caabc26269efaa428afe0ce8b3f6289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.ComponentModel.IDataErrorInfo.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//
// Authors:
//   Rodrigo Moya (rodrigo@ximian.com)
//

namespace System.ComponentModel
{
	public interface IDataErrorInfo
	{
		string Error { get; }

		string this[string columnName] { get; }
	}
}