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

SendBeginEvent() private static method

private static SendBeginEvent ( Processor processor, XPathNavigator node ) : bool
processor Processor
node System.Xml.XPath.XPathNavigator
return bool
        private static bool SendBeginEvent(Processor processor, XPathNavigator node) {
            Debug.Assert(node.NodeType == XPathNodeType.Attribute);
            return processor.BeginEvent(XPathNodeType.Attribute, node.Prefix, node.LocalName, node.NamespaceURI, false);
        }