mscorlib(4.0.0.0) API with additions
IXmlLineInfo.cs
1 namespace System.Xml
2 {
4  [global::__DynamicallyInvokable]
5  public interface IXmlLineInfo
6  {
9  [global::__DynamicallyInvokable]
10  int LineNumber
11  {
12  [global::__DynamicallyInvokable]
13  get;
14  }
15 
18  [global::__DynamicallyInvokable]
19  int LinePosition
20  {
21  [global::__DynamicallyInvokable]
22  get;
23  }
24 
28  [global::__DynamicallyInvokable]
29  bool HasLineInfo();
30  }
31 }
Provides an interface to enable a class to return line and position information.
Definition: IXmlLineInfo.cs:5
bool HasLineInfo()
Gets a value indicating whether the class can return line information.
int LinePosition
Gets the current line position.
Definition: IXmlLineInfo.cs:20
int LineNumber
Gets the current line number.
Definition: IXmlLineInfo.cs:11