133 instantiations of StreamWriter
Microsoft.Activities.Build (3)
mscorlib (15)
system\io\file.cs (10)
60return new StreamWriter(path,false);
70return new StreamWriter(path,true);
890using (StreamWriter sw = new StreamWriter(path, false, encoding, StreamWriter.DefaultBufferSize, checkHost))
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 (10)
PresentationFramework (9)
System (13)
System.Activities.Presentation (1)
System.Configuration (3)
System.Data (4)
System.Data.Entity.Design (3)
System.Data.Services (5)
System.Data.Services.Client (2)
System.Data.Services.Design (2)
System.Data.SqlXml (2)
System.Management (4)
System.Runtime.Remoting (7)
System.ServiceModel.Activation (1)
System.ServiceModel.Web (1)
System.Web (14)
System.Web.Extensions (3)
System.Web.Services (23)
System.Windows.Forms (2)
System.Workflow.ComponentModel (2)
System.Workflow.Runtime (1)
System.Xml (2)
XamlBuildTask (1)
131 references to StreamWriter
ComSvcConfig (2)
Microsoft.Activities.Build (3)
mscorlib (33)
system\io\file.cs (11)
55public static StreamWriter CreateText(String path)
65public static StreamWriter AppendText(String path)
848InternalWriteAllText(path, contents, StreamWriter.UTF8NoBOM, true);
878InternalWriteAllText(path, contents, StreamWriter.UTF8NoBOM, false);
890using (StreamWriter sw = new StreamWriter(path, false, encoding, StreamWriter.DefaultBufferSize, checkHost))
1071InternalWriteAllLines(new StreamWriter(path, false, StreamWriter.UTF8NoBOM), contents);
1103InternalWriteAllLines(new StreamWriter(path, false, StreamWriter.UTF8NoBOM), contents);
1149InternalAppendAllText(path, contents, StreamWriter.UTF8NoBOM);
1175using (StreamWriter sw = new StreamWriter(path, true, encoding))
1191InternalWriteAllLines(new StreamWriter(path, true, StreamWriter.UTF8NoBOM), contents);
system\io\streamwriter.cs (15)
57public new static readonly StreamWriter Null = new StreamWriter(Stream.Null, new UTF8Encoding(false, true), MinBufferSize, true);
456if (this.GetType() != typeof(StreamWriter))
473private static async Task WriteAsyncInternal(StreamWriter _this, Char value,
518if (this.GetType() != typeof(StreamWriter))
542private static async Task WriteAsyncInternal(StreamWriter _this, String value,
614if (this.GetType() != typeof(StreamWriter))
631private static async Task WriteAsyncInternal(StreamWriter _this, Char[] buffer, Int32 index, Int32 count,
692if (this.GetType() != typeof(StreamWriter))
715if (this.GetType() != typeof(StreamWriter))
738if (this.GetType() != typeof(StreamWriter))
771if (this.GetType() != typeof(StreamWriter))
794if (this.GetType() != typeof(StreamWriter))
837private static async Task FlushAsyncInternal(StreamWriter _this, bool flushStream, bool flushEncoder,
870private StreamWriter streamWriter;
873internal MdaHelper(StreamWriter sw, String cs)
PresentationBuildTasks (10)
PresentationFramework (9)
System (12)
System.Activities.Presentation (1)
System.Configuration (3)
System.Data (2)
System.Data.Entity.Design (1)
System.Data.Services (14)
System.Data.Services.Client (6)
System.Data.Services.Design (1)
System.Management (3)
System.Runtime.Remoting (5)
System.ServiceModel.Activation (1)
System.Web (8)
System.Web.Extensions (3)
System.Web.Services (6)
System.Windows.Forms (2)
System.Workflow.ComponentModel (2)
System.Workflow.Runtime (1)
System.Xml (2)
XamlBuildTask (1)