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