36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Provides an interface to enable a class to return line and position information.</summary>
|
|
// Token: 0x020000CB RID: 203
|
|
[Token(Token = "0x20000CB")]
|
|
public interface IXmlLineInfo
|
|
{
|
|
/// <summary>Gets the current line number.</summary>
|
|
/// <returns>The current line number or 0 if no line information is available (for example, <see cref="M:System.Xml.IXmlLineInfo.HasLineInfo" /> returns <see langword="false" />).</returns>
|
|
// Token: 0x17000302 RID: 770
|
|
// (get) Token: 0x06000A77 RID: 2679
|
|
[Token(Token = "0x17000302")]
|
|
int LineNumber
|
|
{
|
|
[Token(Token = "0x6000A77")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
|
|
/// <summary>Gets the current line position.</summary>
|
|
/// <returns>The current line position or 0 if no line information is available (for example, <see cref="M:System.Xml.IXmlLineInfo.HasLineInfo" /> returns <see langword="false" />).</returns>
|
|
// Token: 0x17000303 RID: 771
|
|
// (get) Token: 0x06000A78 RID: 2680
|
|
[Token(Token = "0x17000303")]
|
|
int LinePosition
|
|
{
|
|
[Token(Token = "0x6000A78")]
|
|
[Address(Slot = "1")]
|
|
get;
|
|
}
|
|
}
|
|
}
|