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