9 references to BeginEvent
System.Data.SqlXml (9)
System\Xml\Xsl\XsltOld\AttributeAction.cs (1)
125if (processor.BeginEvent(XPathNodeType.Attribute, qname.Prefix, qname.Name, qname.Namespace, false) == false) {
System\Xml\Xsl\XsltOld\CommentAction.cs (1)
30if (processor.BeginEvent(XPathNodeType.Comment, string.Empty, string.Empty, string.Empty, false) == false) {
System\Xml\Xsl\XsltOld\CopyAttributesAction.cs (1)
95return processor.BeginEvent(XPathNodeType.Attribute, node.Prefix, node.LocalName, node.NamespaceURI, false);
System\Xml\Xsl\XsltOld\CopyNamespacesAction.cs (1)
46if (processor.BeginEvent(XPathNodeType.Namespace, null, frame.Node.LocalName, frame.Node.Value, false) == false) {
System\Xml\Xsl\XsltOld\ElementAction.cs (1)
110if (processor.BeginEvent(XPathNodeType.Element, qname.Prefix, qname.Name, qname.Namespace, this.empty) == false) {
System\Xml\Xsl\XsltOld\NamespaceEvent.cs (1)
40res = processor.BeginEvent(XPathNodeType.Namespace, /*prefix:*/null, this.name, this.namespaceUri, /*empty:*/false);
System\Xml\Xsl\XsltOld\ProcessingInstructionAction.cs (1)
88if (processor.BeginEvent(XPathNodeType.ProcessingInstruction, string.Empty, frame.StoredOutput, string.Empty, false) == false) {
System\Xml\Xsl\XsltOld\Processor.cs (2)
767return BeginEvent(node.NodeType, node.Prefix, node.LocalName, node.NamespaceURI, emptyflag); 770return BeginEvent(XPathNodeType.Namespace, null, node.LocalName, node.Value, false);