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

◆ CopyBeginEvent()

bool System.Xml.Xsl.XsltOld.Processor.CopyBeginEvent ( XPathNavigator node,
bool emptyflag )
inlinepackage

Definition at line 645 of file Processor.cs.

646 {
647 switch (node.NodeType)
648 {
649 case XPathNodeType.Element:
650 case XPathNodeType.Attribute:
651 case XPathNodeType.ProcessingInstruction:
652 case XPathNodeType.Comment:
653 return BeginEvent(node.NodeType, node.Prefix, node.LocalName, node.NamespaceURI, emptyflag);
654 case XPathNodeType.Namespace:
655 return BeginEvent(XPathNodeType.Namespace, null, node.LocalName, node.Value, empty: false);
656 default:
657 return true;
658 }
659 }
bool BeginEvent(XPathNodeType nodeType, string prefix, string name, string nspace, bool empty)
Definition Processor.cs:553

References System.Xml.Xsl.XsltOld.Processor.BeginEvent().