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

IXmlLineInfo.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d49e1e93208fde0fff7e32b590f0720d8814368e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Xml.IXmlLineInfo.cs
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2001 Jason Diamond  http://injektilo.org/
//

namespace System.Xml
{
	public interface IXmlLineInfo
	{
		int LineNumber { get; }
		int LinePosition { get; }

		bool HasLineInfo();
	}
}