| StreamWriter |
The default encoding used is UTF8Encoding. If the writer is not appending to the stream, then an encoding preamble is written to the stream.
See AlsoProject VBCorLib Overview | Constructors | StreamReader | TextWriter
| IObject | |
| TextWriter |
| Name | Description |
|---|---|
AutoFlush (get) | Returns if the writer autoflushes after each write. |
AutoFlush (let) | Sets if the writer autoflushes after each write. |
BaseStream (get) | Returns the stream this writer is using. |
Encoding (get) | Returns the encoding being used by this writer. |
FormatProvider (get) | Returns the format provider being used by this writer. |
NewLine (get) | Returns the new-line string used by this writer. |
NewLine (let) | Sets the new-line string used by this writer. |
| Name | Description |
|---|---|
CloseWriter | Closes this writer, flushing any buffers needed. |
Equals | Returns a boolean indicating if the value and this object instance are the same instance. |
Flush | Flushes the buffers to the underlying stream. |
GetHashCode | Returns a pseudo-unique number identifying this instance. |
ToString | Returns a string representation of this object instance. |
WriteLine | Writes the value, then appends the new-line string. |
WriteValue | Writes the encoded string representation of the value to the stream. |