Class StreamWriter
Represents a writer that can write a sequential series of characters.
public class StreamWriter : TextWriter
- Inheritance
-
objectMarshalByRefObjectTextWriterStreamWriter
- Extension Methods
Properties
BaseStream
Gets the underlying stream that interfaces with a backing store.
public Stream BaseStream { get; }
Property Value
- Stream
Encoding
Returns current stream writer encoding.
public override Encoding Encoding { get; }
Property Value
- Encoding
Methods
Dispose(bool)
Releases all resources.
protected override void Dispose(bool disposing)
Parameters
disposing
boolDisposing
Flush()
Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.
public override void Flush()
New(Stream)
Returns new instance of stream writer class.
public static StreamWriter New(Stream stream)
Parameters
stream
StreamStream object
Returns
New(Stream, Encoding)
Returns new instance of stream writer class.
public static StreamWriter New(Stream stream, Encoding encoding)
Parameters
stream
StreamStream object
encoding
EncodingEncoding
Returns
New(StreamWriter)
Returns new instance of stream writer class.
public static StreamWriter New(StreamWriter sw)
Parameters
sw
StreamWriterStream writer object
Returns
New(string)
Returns new instance of stream writer class.
public static StreamWriter New(string path)
Parameters
path
stringPath to file
Returns
New(string, bool)
Returns new instance of stream writer class.
public static StreamWriter New(string path, bool append)
Parameters
path
stringPath to file
append
boolIf should append data to existing file
Returns
New(string, bool, Encoding)
Returns new instance of stream writer class.
public static StreamWriter New(string path, bool append, Encoding encoding)
Parameters
path
stringPath to file
append
boolIf should append data to existing file
encoding
EncodingEncoding
Returns
Write(char)
Writes one character to stream.
public override void Write(char value)
Parameters
value
charValue to write
Write(char[], int, int)
Writes char array to the stream.
public override void Write(char[] buffer, int index, int count)
Parameters
buffer
char[]Buffer with chars
index
intBuffer start index
count
intNumber of characters to write
Write(string)
Writes a string to the stream.
public override void Write(string value)
Parameters
value
stringString to write
WriteLine(string)
Writes a string followed by a line terminator to the text stream.
public override void WriteLine(string value)
Parameters
value
stringValue to write