2 writes to wrapped
System.Xml (2)
System\Xml\Core\XmlAutoDetectWriter.cs (2)
374this.wrapped = ((XmlWellFormedWriter)XmlWriter.Create(this.textWriter, this.writerSettings)).RawWriter; 376this.wrapped = ((XmlWellFormedWriter)XmlWriter.Create(this.strm, this.writerSettings)).RawWriter;
51 references to wrapped
System.Xml (51)
System\Xml\Core\XmlAutoDetectWriter.cs (51)
78this.wrapped.WriteDocType(name, pubid, sysid, subset); 82if (this.wrapped == null) { 89this.wrapped.WriteStartElement(prefix, localName, ns); 94this.wrapped.WriteStartAttribute(prefix, localName, ns); 98Debug.Assert(this.wrapped != null); 99this.wrapped.WriteEndAttribute(); 104this.wrapped.WriteCData(text); 110if (this.wrapped == null) 113this.wrapped.WriteComment(text); 117if (this.wrapped == null) 120this.wrapped.WriteProcessingInstruction(name, text); 124if (this.wrapped == null) 127this.wrapped.WriteWhitespace(ws); 132this.wrapped.WriteString(text); 147this.wrapped.WriteRaw(data); 154this.wrapped.WriteEntityRef(name); 159this.wrapped.WriteCharEntity(ch); 164this.wrapped.WriteSurrogateCharEntity(lowChar, highChar); 169this.wrapped.WriteBase64(buffer, index, count); 174this.wrapped.WriteBinHex(buffer, index, count); 180this.wrapped.Close(); 186this.wrapped.Flush(); 191this.wrapped.WriteValue(value); 196this.wrapped.WriteValue(value); 201this.wrapped.WriteValue(value); 206this.wrapped.WriteValue(value); 211this.wrapped.WriteValue(value); 216this.wrapped.WriteValue(value); 221this.wrapped.WriteValue(value); 226this.wrapped.WriteValue(value); 231this.wrapped.WriteValue(value); 236this.wrapped.WriteValue(value); 250if (this.wrapped == null) 253this.wrapped.NamespaceResolver = value; 260this.wrapped.WriteXmlDeclaration(standalone); 266this.wrapped.WriteXmlDeclaration(xmldecl); 270Debug.Assert(this.wrapped != null); 271this.wrapped.StartElementContent(); 275Debug.Assert(this.wrapped != null); 276this.wrapped.WriteEndElement(prefix, localName, ns); 280Debug.Assert(this.wrapped != null); 281this.wrapped.WriteFullEndElement(prefix, localName, ns); 286this.wrapped.WriteNamespaceDeclaration(prefix, ns); 291return this.wrapped.SupportsNamespaceDeclarationInChunks; 297this.wrapped.WriteStartNamespaceDeclaration(prefix); 301this.wrapped.WriteEndNamespaceDeclaration(); 334if (this.wrapped == null) 344if (this.wrapped == null) { 361Debug.Assert(this.wrapped == null); 380this.eventCache.EventsToWriter(this.wrapped); 384(this.onRemove)(this.wrapped);