ILocation.cs 377 B

12345678910111213141516171819202122
  1. //
  2. // System.Web.Compilation.ILocation
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2003 Ximian, Inc (http://www.ximian.com)
  8. //
  9. namespace System.Web.Compilation
  10. {
  11. interface ILocation
  12. {
  13. string Filename { get; }
  14. int BeginLine { get; }
  15. int EndLine { get; }
  16. int BeginColumn { get; }
  17. int EndColumn { get; }
  18. string PlainText { get; }
  19. }
  20. }