Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QilIterator.cs
Go to the documentation of this file.
1
namespace
System.Xml.Xsl.Qil
;
2
3
internal
class
QilIterator
:
QilReference
4
{
5
private
QilNode
_binding
;
6
7
public
override
int
Count
=> 1;
8
9
public
override
QilNode
this
[
int
index
]
10
{
11
get
12
{
13
if
(
index
!= 0)
14
{
15
throw
new
IndexOutOfRangeException
();
16
}
17
return
_binding
;
18
}
19
set
20
{
21
if
(
index
!= 0)
22
{
23
throw
new
IndexOutOfRangeException
();
24
}
25
_binding
=
value
;
26
}
27
}
28
29
public
QilNode
Binding
30
{
31
get
32
{
33
return
_binding
;
34
}
35
set
36
{
37
_binding
=
value
;
38
}
39
}
40
41
public
QilIterator
(
QilNodeType
nodeType
,
QilNode
binding
)
42
:
base
(
nodeType
)
43
{
44
Binding
=
binding
;
45
}
46
}
System.IndexOutOfRangeException
Definition
IndexOutOfRangeException.cs:9
System.Xml.Xsl.Qil.QilIterator._binding
QilNode _binding
Definition
QilIterator.cs:5
System.Xml.Xsl.Qil.QilIterator.Binding
QilNode Binding
Definition
QilIterator.cs:30
System.Xml.Xsl.Qil.QilIterator.Count
override int Count
Definition
QilIterator.cs:7
System.Xml.Xsl.Qil.QilIterator.QilIterator
QilIterator(QilNodeType nodeType, QilNode binding)
Definition
QilIterator.cs:41
System.Xml.Xsl.Qil.QilIterator
Definition
QilIterator.cs:4
System.Xml.Xsl.Qil.QilNode.nodeType
QilNodeType nodeType
Definition
QilNode.cs:8
System.Xml.Xsl.Qil.QilNode
Definition
QilNode.cs:7
System.Xml.Xsl.Qil.QilReference
Definition
QilReference.cs:6
System.Xml.Xsl.Qil.QilNodeType
QilNodeType
Definition
QilNodeType.cs:4
System.Xml.Xsl.Qil
Definition
IQilAnnotation.cs:1
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
System.ExceptionArgument.index
@ index
source
System.Private.Xml
System.Xml.Xsl.Qil
QilIterator.cs
Generated by
1.10.0