4 writes to Writer
System.Data.SqlXml (4)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (4)
113
Writer
= writer;
170
Writer
= this.attrCache;
384
Writer
= this.seqwrt.StartTree(rootType, this.nsmgr, this.runtime.NameTable);
396
Writer
= null;
16 references to Writer
System.Data.SqlXml (16)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (15)
110
if (
Writer
is XmlAttributeCache)
111
this.attrCache = (XmlAttributeCache)
Writer
;
169
this.attrCache.Init(
Writer
);
410
Writer
.WriteStartElement(prefix, localName, ns);
435
Writer
.StartElementContent();
444
Writer
.WriteEndElement(prefix, localName, ns);
462
Writer
.WriteStartAttribute(prefix, localName, ns);
479
Writer
.WriteEndAttribute();
500
Writer
.WriteNamespaceDeclaration(prefix, ns);
524
Writer
.WriteString(text);
532
Writer
.WriteRaw(text);
738
Writer
.WriteComment(this.nodeText.GetResult());
778
Writer
.WriteProcessingInstruction(this.piTarget, this.nodeText.GetResult());
1037
XmlAttributeCache attrCache =
Writer
as XmlAttributeCache;
1199
Writer
.WriteNamespaceDeclaration(prefix, ns);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
952
events = (XmlEventCache) this.output.
Writer
;