1 write to wrapped
System.Xml (1)
System\Xml\Core\QueryOutputWriterV1.cs (1)
38this.wrapped = writer;
35 references to wrapped
System.Xml (35)
System\Xml\Core\QueryOutputWriterV1.cs (35)
61this.wrapped.WriteStartDocument(true); 64this.wrapped.WriteStartDocument(); 95return this.wrapped.WriteState; 100this.wrapped.WriteStartDocument(); 104this.wrapped.WriteStartDocument(standalone); 108this.wrapped.WriteEndDocument(); 117this.wrapped.WriteDocType(name, pubid, sysid, subset); 130WriteState ws = this.wrapped.WriteState; 132this.wrapped.WriteDocType( 141this.wrapped.WriteStartElement(prefix, localName, ns); 153this.wrapped.WriteEndElement(); 162this.wrapped.WriteFullEndElement(); 170this.wrapped.WriteStartAttribute(prefix, localName, ns); 175this.wrapped.WriteEndAttribute(); 179this.wrapped.WriteCData(text); 184this.wrapped.WriteComment(text); 189this.wrapped.WriteProcessingInstruction(name, text); 194this.wrapped.WriteCData(ws); 196this.wrapped.WriteWhitespace(ws); 201this.wrapped.WriteCData(text); 203this.wrapped.WriteString(text); 208this.wrapped.WriteCData(new string(buffer, index, count)); 210this.wrapped.WriteChars(buffer, index, count); 215this.wrapped.WriteBase64(buffer, index, count); 217this.wrapped.WriteBase64(buffer, index, count); 222this.wrapped.WriteEntityRef(name); 227this.wrapped.WriteCharEntity(ch); 232this.wrapped.WriteSurrogateCharEntity(lowChar, highChar); 237this.wrapped.WriteCData(new string(buffer, index, count)); 239this.wrapped.WriteRaw(buffer, index, count); 244this.wrapped.WriteCData(data); 246this.wrapped.WriteRaw(data); 250this.wrapped.Close(); 254this.wrapped.Flush(); 258return this.wrapped.LookupPrefix(ns);