4 writes to Writer
System.Private.Xml (4)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (4)
116Writer = writer; 177Writer = _attrCache; 419Writer = _seqwrt!.StartTree(rootType, _nsmgr, _runtime.NameTable); 432Writer = null;
16 references to Writer
System.Private.Xml (16)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (15)
113if (Writer is XmlAttributeCache) 114_attrCache = (XmlAttributeCache)Writer; 176_attrCache.Init(Writer!); 447Writer!.WriteStartElement(prefix, localName, ns); 474Writer!.StartElementContent(); 484Writer!.WriteEndElement(prefix, localName, ns); 504Writer!.WriteStartAttribute(prefix, localName, ns); 523Writer!.WriteEndAttribute(); 546Writer!.WriteNamespaceDeclaration(prefix, ns); 572Writer!.WriteString(text); 581Writer!.WriteRaw(text); 811Writer!.WriteComment(_nodeText.GetResult()); 854Writer!.WriteProcessingInstruction(_piTarget!, _nodeText.GetResult()); 1145XmlAttributeCache? attrCache = Writer as XmlAttributeCache; 1321Writer!.WriteNamespaceDeclaration(prefix!, ns!);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
1016events = (XmlEventCache)_output.Writer!;