4 writes to Writer
System.Private.Xml (4)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (4)
117Writer = writer; 178Writer = _attrCache; 420Writer = _seqwrt!.StartTree(rootType, _nsmgr, _runtime.NameTable); 433Writer = null;
16 references to Writer
System.Private.Xml (16)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (15)
114if (Writer is XmlAttributeCache) 115_attrCache = (XmlAttributeCache)Writer; 177_attrCache.Init(Writer!); 448Writer!.WriteStartElement(prefix, localName, ns); 475Writer!.StartElementContent(); 485Writer!.WriteEndElement(prefix, localName, ns); 505Writer!.WriteStartAttribute(prefix, localName, ns); 524Writer!.WriteEndAttribute(); 547Writer!.WriteNamespaceDeclaration(prefix, ns); 573Writer!.WriteString(text); 582Writer!.WriteRaw(text); 812Writer!.WriteComment(_nodeText.GetResult()); 855Writer!.WriteProcessingInstruction(_piTarget!, _nodeText.GetResult()); 1146XmlAttributeCache? attrCache = Writer as XmlAttributeCache; 1322Writer!.WriteNamespaceDeclaration(prefix!, ns!);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
1016events = (XmlEventCache)_output.Writer!;