20 references to StreamWriter
mscorlib (7)
system\io\file.cs (7)
1071
InternalWriteAllLines(new
StreamWriter
(path, false, StreamWriter.UTF8NoBOM), contents);
1088
InternalWriteAllLines(new
StreamWriter
(path, false, encoding), contents);
1103
InternalWriteAllLines(new
StreamWriter
(path, false, StreamWriter.UTF8NoBOM), contents);
1120
InternalWriteAllLines(new
StreamWriter
(path, false, encoding), contents);
1175
using (StreamWriter sw = new
StreamWriter
(path, true, encoding))
1191
InternalWriteAllLines(new
StreamWriter
(path, true, StreamWriter.UTF8NoBOM), contents);
1208
InternalWriteAllLines(new
StreamWriter
(path, true, encoding), contents);
PresentationBuildTasks (2)
BuildTasks\MS\Internal\Tasks\TaskFileService.cs (2)
315
using (StreamWriter sw = new
StreamWriter
(destinationFile, false, new UTF8Encoding(true)))
356
using (StreamWriter sw = new
StreamWriter
(destinationFile, false, new UTF8Encoding(true)))
System (1)
services\monitoring\system\diagnosticts\PerformanceCounterLib.cs (1)
360
StreamWriter iniWriter = new
StreamWriter
(IniFilePath, false, Encoding.Unicode);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
578
using (StreamWriter fileStreamWriter = new
StreamWriter
(fileName, false, Encoding.UTF8))
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
578
using (StreamWriter fileStreamWriter = new
StreamWriter
(fileName, false, Encoding.UTF8))
System.Management (3)
Instrumentation\ManagementInstaller.cs (1)
154
using(StreamWriter log = new
StreamWriter
(mofFile, false, Encoding.Unicode))
Instrumentation\SchemaRegistration.cs (2)
413
using(StreamWriter log = new
StreamWriter
(CodePath, false, Encoding.Unicode))
420
using(StreamWriter log = new
StreamWriter
(MofPath, false, Encoding.Unicode))
System.Runtime.Remoting (1)
metadata\wsdlparser.cs (1)
3275
TextWriter textWriter = new
StreamWriter
(_completeFileName, false, new UTF8Encoding(false));
System.Web (4)
Compilation\BuildManager.cs (3)
2626
using (StreamWriter writer = new
StreamWriter
(precompMarkerFile, false /*append*/, Encoding.UTF8)) {
2773
return new
StreamWriter
(physicalPath, false /*append*/, fileEncoding);
3019
StreamWriter writer = new
StreamWriter
(destPhysicalPath, false /* append */, encoding);
Compilation\BuildResultCache.cs (1)
758
using (var writer = new
StreamWriter
(hashFilePath, false, Encoding.UTF8)) {