Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QilUnary.cs
Go to the documentation of this file.
1
namespace
System.Xml.Xsl.Qil
;
2
3
internal
sealed
class
QilUnary
:
QilNode
4
{
5
private
QilNode
_child
;
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
_child
;
18
}
19
set
20
{
21
if
(
index
!= 0)
22
{
23
throw
new
IndexOutOfRangeException
();
24
}
25
_child
=
value
;
26
}
27
}
28
29
public
QilNode
Child
30
{
31
get
32
{
33
return
_child
;
34
}
35
set
36
{
37
_child
=
value
;
38
}
39
}
40
41
public
QilUnary
(
QilNodeType
nodeType
,
QilNode
child)
42
:
base
(
nodeType
)
43
{
44
_child
= child;
45
}
46
}
System.IndexOutOfRangeException
Definition
IndexOutOfRangeException.cs:9
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.QilUnary.Count
override int Count
Definition
QilUnary.cs:7
System.Xml.Xsl.Qil.QilUnary.Child
QilNode Child
Definition
QilUnary.cs:30
System.Xml.Xsl.Qil.QilUnary.QilUnary
QilUnary(QilNodeType nodeType, QilNode child)
Definition
QilUnary.cs:41
System.Xml.Xsl.Qil.QilUnary._child
QilNode _child
Definition
QilUnary.cs:5
System.Xml.Xsl.Qil.QilUnary
Definition
QilUnary.cs:4
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
QilUnary.cs
Generated by
1.10.0