Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
OperandQuery.cs
Go to the documentation of this file.
1
using
System.Xml.XPath
;
2
3
namespace
MS.Internal.Xml.XPath
;
4
5
internal
sealed
class
OperandQuery
:
ValueQuery
6
{
7
internal
object
val
;
8
9
public
override
XPathResultType
StaticType
=>
GetXPathType
(
val
);
10
11
public
OperandQuery
(
object
val
)
12
{
13
this.val =
val
;
14
}
15
16
public
override
object
Evaluate
(
XPathNodeIterator
nodeIterator)
17
{
18
return
val
;
19
}
20
21
public
override
XPathNodeIterator
Clone
()
22
{
23
return
this
;
24
}
25
}
MS.Internal.Xml.XPath.OperandQuery.val
object val
Definition
OperandQuery.cs:7
MS.Internal.Xml.XPath.OperandQuery.StaticType
override XPathResultType StaticType
Definition
OperandQuery.cs:9
MS.Internal.Xml.XPath.OperandQuery.Evaluate
override object Evaluate(XPathNodeIterator nodeIterator)
Definition
OperandQuery.cs:16
MS.Internal.Xml.XPath.OperandQuery.OperandQuery
OperandQuery(object val)
Definition
OperandQuery.cs:11
MS.Internal.Xml.XPath.OperandQuery.Clone
override XPathNodeIterator Clone()
Definition
OperandQuery.cs:21
MS.Internal.Xml.XPath.OperandQuery
Definition
OperandQuery.cs:6
MS.Internal.Xml.XPath.Query.GetXPathType
XPathResultType GetXPathType(object value)
Definition
Query.cs:147
MS.Internal.Xml.XPath.ValueQuery
Definition
ValueQuery.cs:7
System.Xml.XPath.XPathNodeIterator
Definition
XPathNodeIterator.cs:8
MS.Internal.Xml.XPath
Definition
AbsoluteQuery.cs:3
System.Xml.XPath.XPathResultType
XPathResultType
Definition
XPathResultType.cs:4
System.Xml.XPath
Definition
Extensions.cs:5
source
System.Private.Xml
MS.Internal.Xml.XPath
OperandQuery.cs
Generated by
1.10.0