16 writes to CloseOutput
System.Data (5)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3609WriterSettings.CloseOutput = false; // don't close the memory stream
fx\src\data\System\Data\SqlClient\SqlStream.cs (1)
495 writerSettings.CloseOutput = true; // close the memory stream when done
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
10368writerSettings.CloseOutput = false; // don't close the memory stream
fx\src\data\System\Data\SQLTypes\SqlXml.cs (2)
159 writerSettings.CloseOutput = false; // don't close the memory stream 191 writerSettings.CloseOutput = false; // don't close the memory stream
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpHtmlBuilder.cs (1)
343CloseOutput = false,
System\ServiceModel\Dispatcher\HelpPage.cs (1)
415CloseOutput = false,
System.Workflow.Activities (1)
Common\CompModHelpers.cs (1)
990settings.CloseOutput = true;
System.Workflow.ComponentModel (1)
Shared\CompModHelpers.cs (1)
988settings.CloseOutput = true;
System.Workflow.Runtime (1)
Tracking\SqlTrackingService.cs (1)
619settings.CloseOutput = true;
System.Xml (5)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
209settings.CloseOutput = this.closeOutput;
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
165settings.CloseOutput = this.closeOutput;
System\Xml\Core\XmlWriterSettings.cs (2)
445newSettings.CloseOutput = true; 839CloseOutput = reader.ReadBoolean();
System\Xml\Dom\DocumentXmlWriter.cs (1)
77settings.CloseOutput = false;
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\PartialClassGenerationTaskInternal.cs (1)
485XmlWriterSettings xmlSettings = new XmlWriterSettings { Indent = true, IndentChars = " ", CloseOutput = true };
6 references to CloseOutput
System.Data.Services (1)
parent\Client\System\Data\Services\Client\XmlUtil.cs (1)
196Debug.Assert(!settings.CloseOutput, "!settings.CloseOutput -- otherwise default changed?");
System.Data.Services.Client (1)
System\Data\Services\Client\XmlUtil.cs (1)
196Debug.Assert(!settings.CloseOutput, "!settings.CloseOutput -- otherwise default changed?");
System.Xml (4)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
122closeOutput = settings.CloseOutput;
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
107closeOutput = settings.CloseOutput;
System\Xml\Core\XmlWriterSettings.cs (2)
443if (!newSettings.CloseOutput) { 791writer.Write(CloseOutput);