scripts
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
|
||||
namespace Mono.Xml
|
||||
{
|
||||
// Token: 0x020000F3 RID: 243
|
||||
internal class SmallXmlParserException : SystemException
|
||||
{
|
||||
// Token: 0x06000C12 RID: 3090 RVA: 0x00036900 File Offset: 0x00034B00
|
||||
public SmallXmlParserException(string msg, int line, int column)
|
||||
: base(string.Format("{0}. At ({1},{2})", msg, line, column))
|
||||
{
|
||||
this.line = line;
|
||||
this.column = column;
|
||||
}
|
||||
|
||||
// Token: 0x170001C0 RID: 448
|
||||
// (get) Token: 0x06000C13 RID: 3091 RVA: 0x00036930 File Offset: 0x00034B30
|
||||
public int Line
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.line;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170001C1 RID: 449
|
||||
// (get) Token: 0x06000C14 RID: 3092 RVA: 0x00036938 File Offset: 0x00034B38
|
||||
public int Column
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.column;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000351 RID: 849
|
||||
private int line;
|
||||
|
||||
// Token: 0x04000352 RID: 850
|
||||
private int column;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user