Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IdRefNode.cs
Go to the documentation of this file.
1
namespace
System.Xml.Schema
;
2
3
internal
sealed
class
IdRefNode
4
{
5
internal
string
Id
;
6
7
internal
int
LineNo
;
8
9
internal
int
LinePos
;
10
11
internal
IdRefNode
Next
;
12
13
internal
IdRefNode
(
IdRefNode
next,
string
id
,
int
lineNo,
int
linePos)
14
{
15
Id
= id;
16
LineNo
= lineNo;
17
LinePos
= linePos;
18
Next
= next;
19
}
20
}
System.Xml.Schema.IdRefNode.LineNo
int LineNo
Definition
IdRefNode.cs:7
System.Xml.Schema.IdRefNode.Id
string Id
Definition
IdRefNode.cs:5
System.Xml.Schema.IdRefNode.Next
IdRefNode Next
Definition
IdRefNode.cs:11
System.Xml.Schema.IdRefNode.IdRefNode
IdRefNode(IdRefNode next, string id, int lineNo, int linePos)
Definition
IdRefNode.cs:13
System.Xml.Schema.IdRefNode.LinePos
int LinePos
Definition
IdRefNode.cs:9
System.Xml.Schema.IdRefNode
Definition
IdRefNode.cs:4
System.Xml.Schema
Definition
Extensions.cs:3
source
System.Private.Xml
System.Xml.Schema
IdRefNode.cs
Generated by
1.10.0