System.Xml.Xsl.XsltOld.CopyAttributesAction.SendTextEvent C# (CSharp) Method

SendTextEvent() private static method

private static SendTextEvent ( Processor processor, XPathNavigator node ) : bool
processor Processor
node System.Xml.XPath.XPathNavigator
return bool
        private static bool SendTextEvent(Processor processor, XPathNavigator node) {
            Debug.Assert(node.NodeType == XPathNodeType.Attribute);
            return processor.TextEvent(node.Value);
        }