Share via


StreamWriter Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Implements a TextWriter for writing characters to a stream in a particular encoding.

Inheritance Hierarchy

System. . :: . .Object
  System. . :: . .MarshalByRefObject
    System.IO. . :: . .TextWriter
      System.IO..::..StreamWriter

Namespace:  System.IO
Assembly:  System.IO (in System.IO.dll)

Syntax

'Declaration
Public Class StreamWriter _
    Inherits TextWriter
public class StreamWriter : TextWriter
public ref class StreamWriter : public TextWriter
type StreamWriter =  
    class
        inherit TextWriter
    end
public class StreamWriter extends TextWriter

The StreamWriter type exposes the following members.

Constructors

  Name Description
Public method StreamWriter(Stream) Initializes a new instance of the StreamWriter class for the specified stream by using UTF-8 encoding and the default buffer size.
Public method StreamWriter(String) Initializes a new instance of the StreamWriter class for the specified file by using the default encoding and buffer size.
Public method StreamWriter(String, Boolean) Initializes a new instance of the StreamWriter class for the specified file by using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.

Top

Properties

  Name Description
Public property BaseStream Gets the underlying stream that interfaces with a backing store.
Public property Encoding Gets the Encoding in which the output is written. (Overrides TextWriter. . :: . .Encoding.)
Public property NewLine Gets or sets the line terminator string used by the current TextWriter. (Inherited from TextWriter.)

Top

Methods

  Name Description
Public method Close Closes the current StreamWriter object and the underlying stream. (Overrides TextWriter. . :: . .Close() () () ().)
Public method Dispose() () () () Releases all resources used by the TextWriter object. (Inherited from TextWriter.)
Protected method Dispose(Boolean) Releases the unmanaged resources used by the StreamWriter and optionally releases the managed resources. (Overrides TextWriter. . :: . .Dispose(Boolean).)
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Flush Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream. (Overrides TextWriter. . :: . .Flush() () () ().)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method Write(Boolean) Writes the text representation of a Boolean value to the text string or stream. (Inherited from TextWriter.)
Public method Write(Char) Writes a character to the stream. (Overrides TextWriter. . :: . .Write(Char).)
Public method Write(array<Char> [] () [] []) Writes a character array to the text string or stream. (Inherited from TextWriter.)
Public method Write(Double) Writes the text representation of an 8-byte floating-point value to the text string or stream. (Inherited from TextWriter.)
Public method Write(Int32) Writes the text representation of a 4-byte signed integer to the text string or stream. (Inherited from TextWriter.)
Public method Write(Int64) Writes the text representation of an 8-byte signed integer to the text string or stream. (Inherited from TextWriter.)
Public method Write(Object) Writes the text representation of an object to the text string or stream by calling the ToString method on that object. (Inherited from TextWriter.)
Public method Write(Single) Writes the text representation of a 4-byte floating-point value to the text string or stream. (Inherited from TextWriter.)
Public method Write(String) Writes a string to the text string or stream. (Inherited from TextWriter.)
Public method Write(UInt32) Writes the text representation of a 4-byte unsigned integer to the text string or stream. (Inherited from TextWriter.)
Public method Write(UInt64) Writes the text representation of an 8-byte unsigned integer to the text string or stream. (Inherited from TextWriter.)
Public method Write(array<Char> [] () [] [], Int32, Int32) Writes a subarray of characters to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine() () () () Writes a line to the stream. (Overrides TextWriter. . :: . .WriteLine() () () ().)
Public method WriteLine(Boolean) Writes the text representation of a Boolean value followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(Char) Writes a character followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(array<Char> [] () [] []) Writes an array of characters followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(Double) Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(Int32) Writes the text representation of a 4-byte signed integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(Int64) Writes the text representation of an 8-byte signed integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(Object) Writes the text representation of an object by calling the ToString method on that object, followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(Single) Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(String) Writes a string followed by a line terminator to the text stream. (Overrides TextWriter. . :: . .WriteLine(String).)
Public method WriteLine(UInt32) Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(UInt64) Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text string or stream. (Inherited from TextWriter.)
Public method WriteLine(array<Char> [] () [] [], Int32, Int32) Writes a subarray of characters followed by a line terminator to the text string or stream. (Inherited from TextWriter.)

Top

Fields

  Name Description
Protected field CoreNewLine Stores the newline characters used for this TextWriter. (Inherited from TextWriter.)

Top

Remarks

StreamWriter is designed for character output in a particular encoding, whereas classes derived from Stream are designed for byte input and output.

StreamWriter defaults to using an instance of UTF8Encoding unless specified otherwise. This instance of UTF8Encoding is constructed without a byte order mark (BOM), so its GetPreamble method returns an empty byte array. The default UTF-8 encoding for this constructor throws an exception on invalid bytes. This behavior is different from the behavior provided by the encoding object in the Encoding..::..UTF8 property. To specify a BOM and determine whether an exception is thrown on invalid bytes, use a constructor that accepts an encoding object as a parameter, such as #ctor(String, Boolean, Encoding) or #ctor.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.IO Namespace