Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XPathItem.cs
Go to the documentation of this file.
2
3namespace System.Xml.XPath;
4
5public abstract class XPathItem
6{
7 public abstract bool IsNode { get; }
8
9 public abstract XmlSchemaType? XmlType { get; }
10
11 public abstract string Value { get; }
12
13 public abstract object TypedValue { get; }
14
15 public abstract Type ValueType { get; }
16
17 public abstract bool ValueAsBoolean { get; }
18
19 public abstract DateTime ValueAsDateTime { get; }
20
21 public abstract double ValueAsDouble { get; }
22
23 public abstract int ValueAsInt { get; }
24
25 public abstract long ValueAsLong { get; }
26
27 public virtual object ValueAs(Type returnType)
28 {
29 return ValueAs(returnType, null);
30 }
31
33}
virtual object ValueAs(Type returnType)
Definition XPathItem.cs:27
object ValueAs(Type returnType, IXmlNamespaceResolver? nsResolver)
XmlSchemaType? XmlType
Definition XPathItem.cs:9