2003-10-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Compilation / ILocation.cs
1 //
2 // System.Web.Compilation.ILocation
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9
10 namespace System.Web.Compilation
11 {
12         interface ILocation
13         {
14                 string Filename { get; }
15                 int BeginLine { get; }
16                 int EndLine { get; }
17                 int BeginColumn { get; }
18                 int EndColumn { get; }
19                 string PlainText { get; }
20         }
21 }
22