1 write to wrapped
System.Xml (1)
System\Xml\Core\QueryOutputWriter.cs (1)
36this.wrapped = writer;
34 references to wrapped
System.Xml (34)
System\Xml\Core\QueryOutputWriter.cs (34)
87this.wrapped.NamespaceResolver = value; 95this.wrapped.WriteXmlDeclaration(standalone); 99this.wrapped.WriteXmlDeclaration(xmldecl); 107XmlWriterSettings settings = this.wrapped.Settings; 124this.wrapped.WriteDocType(name, pubid, sysid, subset); 146this.wrapped.WriteDocType( 155this.wrapped.WriteStartElement(prefix, localName, ns); 167this.wrapped.WriteEndElement(prefix, localName, ns); 179this.wrapped.WriteFullEndElement(prefix, localName, ns); 189this.wrapped.StartElementContent(); 194this.wrapped.WriteStartAttribute(prefix, localName, ns); 199this.wrapped.WriteEndAttribute(); 203this.wrapped.WriteNamespaceDeclaration(prefix, ns); 208return this.wrapped.SupportsNamespaceDeclarationInChunks; 213this.wrapped.WriteStartNamespaceDeclaration(prefix); 217this.wrapped.WriteEndNamespaceDeclaration(); 221this.wrapped.WriteCData(text); 226this.wrapped.WriteComment(text); 231this.wrapped.WriteProcessingInstruction(name, text); 236this.wrapped.WriteCData(ws); 238this.wrapped.WriteWhitespace(ws); 243this.wrapped.WriteCData(text); 245this.wrapped.WriteString(text); 250this.wrapped.WriteCData(new string(buffer, index, count)); 252this.wrapped.WriteChars(buffer, index, count); 257this.wrapped.WriteEntityRef(name); 262this.wrapped.WriteCharEntity(ch); 267this.wrapped.WriteSurrogateCharEntity(lowChar, highChar); 272this.wrapped.WriteCData(new string(buffer, index, count)); 274this.wrapped.WriteRaw(buffer, index, count); 279this.wrapped.WriteCData(data); 281this.wrapped.WriteRaw(data); 285this.wrapped.Close(); 294this.wrapped.Flush();