CorLib  

StreamWriter

StreamWriter overview

Implements:

IObject 
TextWriter 

Public:

Properties:
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.  
Methods:
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.  
WriteChars 
WriteLine Writes the value, then appends the new-line string.  
WriteLineChars 
WriteValue Writes the encoded string representation of the value to the stream.  

See Also