IDataErrorInfo.cs 297 B

123456789101112131415161718
  1. //
  2. // System.ComponentModel.IDataErrorInfo.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. //
  6. // Authors:
  7. // Rodrigo Moya ([email protected])
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public interface IDataErrorInfo
  12. {
  13. string Error { get; }
  14. string this[string columnName] { get; }
  15. }
  16. }