Share via


TextWriter.Close Method

Closes the current writer and releases any system resources associated with the writer.

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

Syntax

public virtual void Close ()

Remarks

This implementation of Close calls the Dispose method passing a true value.

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, 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.

Following a call to Close, any operations on the writer might raise exceptions. This default method does nothing, but derived classes can override the method to provide the appropriate functionality.

Version Information

Available in the .NET Micro Framework versions 3.0, 4.0, and 4.1.

See Also

Reference

TextWriter Class
TextWriter Members
System.IO Namespace