Type Summary

						public class StreamWriter : TextWriter
{
  // Constructors
     public StreamWriter (string path);
     public StreamWriter (string path, bool append);
     public StreamWriter (string path, bool append,
                          Encoding encoding);
     public StreamWriter (string path, bool append,
                          Encoding encoding,
                          int bufferSize);
     public StreamWriter (Stream stream);
     public StreamWriter (Stream stream, Encoding encoding);
     public StreamWriter (Stream stream, Encoding encoding,
                          int bufferSize);

  // Fields
  MS
						public static readonly StreamWriter Null;

  // Properties
     public virtual bool AutoFlush { set; get; }
     public virtual Stream BaseStream { get; }
     public override Encoding Encoding { get; }

  // Methods
     public override void Close ();
     protected override void Dispose (bool disposing); ...

Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.