9 references to BeginEvent
System.Private.Xml (9)
System\Xml\Xsl\XsltOld\AttributeAction.cs (1)
145if (!processor.BeginEvent(XPathNodeType.Attribute, qname.Prefix, qname.Name, qname.Namespace, false))
System\Xml\Xsl\XsltOld\CommentAction.cs (1)
31if (!processor.BeginEvent(XPathNodeType.Comment, string.Empty, string.Empty, string.Empty, false))
System\Xml\Xsl\XsltOld\CopyAttributesAction.cs (1)
103return processor.BeginEvent(XPathNodeType.Attribute, node.Prefix, node.LocalName, node.NamespaceURI, false);
System\Xml\Xsl\XsltOld\CopyNamespacesAction.cs (1)
45if (!processor.BeginEvent(XPathNodeType.Namespace, null, frame.Node.LocalName, frame.Node.Value, false))
System\Xml\Xsl\XsltOld\ElementAction.cs (1)
125if (!processor.BeginEvent(XPathNodeType.Element, qname.Prefix, qname.Name, qname.Namespace, _empty))
System\Xml\Xsl\XsltOld\NameSpaceEvent.cs (1)
43res = processor.BeginEvent(XPathNodeType.Namespace, /*prefix:*/null, _name, _namespaceUri, /*empty:*/false);
System\Xml\Xsl\XsltOld\ProcessingInstructionAction.cs (1)
89if (!processor.BeginEvent(XPathNodeType.ProcessingInstruction, string.Empty, frame.StoredOutput, string.Empty, false))
System\Xml\Xsl\XsltOld\Processor.cs (2)
850return BeginEvent(node.NodeType, node.Prefix, node.LocalName, node.NamespaceURI, emptyflag); 853return BeginEvent(XPathNodeType.Namespace, null, node.LocalName, node.Value, false);