Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetKindMask()

static int System.Xml.XPath.XPathNavigator.GetKindMask ( XPathNodeType type)
inlinestaticpackageinherited

Definition at line 1823 of file XPathNavigator.cs.

1824 {
1825 return type switch
1826 {
1827 XPathNodeType.All => int.MaxValue,
1828 XPathNodeType.Text => 112,
1829 _ => 1 << (int)type,
1830 };
1831 }

References System.Xml.Dictionary, and System.type.

Referenced by MS.Internal.Xml.Cache.XPathDocumentNavigator.IsKindMatch().