17 writes to CloseOutput
Microsoft.AspNetCore.Mvc.Formatters.Xml (3)
FormattingUtilities.cs (1)
42CloseOutput = false,
XmlDataContractSerializerOutputFormatter.cs (1)
187xmlWriterSettings.CloseOutput = false;
XmlSerializerOutputFormatter.cs (1)
166xmlWriterSettings.CloseOutput = false;
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (2)
XmlDataContractSerializerOutputFormatterTest.cs (1)
256CloseOutput = false
XmlSerializerOutputFormatterTest.cs (1)
252CloseOutput = false
Microsoft.Extensions.FileProviders.Embedded.Tests (1)
TestAssembly.cs (1)
39using (var writer = XmlWriter.Create(ManifestStream, new XmlWriterSettings { CloseOutput = false }))
ReachFramework (1)
PrintConfig\PrintCapabilitesWriter.cs (1)
36settings.CloseOutput = false;
System.Data.Common (2)
System\Data\SQLTypes\SqlXml.cs (2)
143writerSettings.CloseOutput = false; // don't close the memory stream 180writerSettings.CloseOutput = false; // don't close the memory stream
System.Private.Xml (6)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
198settings.CloseOutput = _closeOutput;
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
145settings.CloseOutput = _closeOutput;
System\Xml\Core\XmlWriter.cs (1)
622var settings = new XmlWriterSettings { CloseOutput = true };
System\Xml\Core\XmlWriterSettings.cs (2)
341newSettings.CloseOutput = true; 668CloseOutput = reader.ReadBoolean();
System\Xml\Dom\DocumentXmlWriter.cs (1)
79_settings.CloseOutput = false;
System.Xaml (2)
System\Xaml\XamlXmlWriter.cs (2)
59InitializeXamlXmlWriter(XmlWriter.Create(stream, new XmlWriterSettings { CloseOutput = true }), schemaContext, settings); 78InitializeXamlXmlWriter(XmlWriter.Create(textWriter, new XmlWriterSettings { CloseOutput = true }), schemaContext, settings);
6 references to CloseOutput
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (2)
XmlDataContractSerializerOutputFormatterTest.cs (1)
147Assert.False(writerSettings.CloseOutput);
XmlSerializerOutputFormatterTest.cs (1)
153Assert.False(writerSettings.CloseOutput);
System.Private.Xml (4)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
99_closeOutput = settings.CloseOutput;
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
84_closeOutput = settings.CloseOutput;
System\Xml\Core\XmlWriterSettings.cs (2)
338if (!newSettings.CloseOutput) 618writer.Write(CloseOutput);