1 write to writerSettings
System.Xml (1)
System\Xml\Core\XmlAutoDetectWriter.cs (1)
37this.writerSettings = (XmlWriterSettings)writerSettings.Clone();
9 references to writerSettings
System.Xml (9)
System\Xml\Core\XmlAutoDetectWriter.cs (9)
38this.writerSettings.ReadOnly = true; 73get { return this.writerSettings; } 364this.writerSettings.ReadOnly = false; 365this.writerSettings.OutputMethod = outMethod; 368if (outMethod == XmlOutputMethod.Html && this.writerSettings.IndentInternal == TriState.Unknown) 369this.writerSettings.Indent = true; 371this.writerSettings.ReadOnly = true; 374this.wrapped = ((XmlWellFormedWriter)XmlWriter.Create(this.textWriter, this.writerSettings)).RawWriter; 376this.wrapped = ((XmlWellFormedWriter)XmlWriter.Create(this.strm, this.writerSettings)).RawWriter;