StreamWriter.AutoFlush Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the StreamWriter will flush its buffer to the underlying stream after every call to Write(Char).
public:
virtual property bool AutoFlush { bool get(); void set(bool value); };
public virtual bool AutoFlush { get; set; }
member this.AutoFlush : bool with get, set
Public Overridable Property AutoFlush As Boolean
Property Value
true
to force StreamWriter to flush its buffer; otherwise, false
.
Examples
The following example shows the syntax for using the AutoFlush
property.
// Gets or sets a value indicating whether the StreamWriter
// will flush its buffer to the underlying stream after every
// call to StreamWriter.Write.
sw->AutoFlush = true;
// Gets or sets a value indicating whether the StreamWriter
// will flush its buffer to the underlying stream after every
// call to StreamWriter.Write.
sw.AutoFlush = true;
' Gets or sets a value indicating whether the StreamWriter
' will flush its buffer to the underlying stream after every
' call to StreamWriter.Write.
Sw.AutoFlush = True
Remarks
Flushing the stream will not flush its underlying encoder unless you explicitly call Flush or Close. Setting AutoFlush to true
means that data will be flushed from the buffer to the stream after each write operation, but the encoder state will not be flushed. This allows the encoder to keep its state (partial characters) so that it can encode the next block of characters correctly. This scenario affects UTF8 and UTF7 where certain characters can only be encoded after the encoder receives the adjacent character or characters.
When AutoFlush
is set to false
, StreamWriter
will do a limited amount of buffering, both internally and potentially in the encoder from the encoding you passed in. You can get better performance by setting AutoFlush
to false
, assuming that you always call Close
(or at least Flush
) when you're done writing with a StreamWriter
.
For example, set AutoFlush
to true
when you are writing to a device where the user expects immediate feedback. Console.Out
is one of these cases: The StreamWriter
used internally for writing to Console
flushes all its internal state except the encoder state after every call to StreamWriter.Write.
For a list of common I/O tasks, see Common I/O Tasks.