Share via


ConverterWriter Members

Include Protected Members
Include Inherited Members

The ConverterWriter type is a write-only converter that is derived from the TextWriter class. Source documents are written into ConverterWriter and the output is written into a Stream or TextWriter object.

The ConverterWriter type exposes the following members.

Constructors

  Name Description
Public method ConverterWriter(Stream, TextConverter) The ConverterWriter constructor creates a new ConverterWriter object that uses converter to write converted output to destinationStream.
Public method ConverterWriter(TextWriter, TextConverter) The ConverterWriter constructor creates a new ConverterWriter object that uses converter to write converted output to destinationWriter.

Top

Properties

  Name Description
Public property Encoding The Encoding method returns a null reference (Nothing in Visual Basic). (Overrides TextWriter.Encoding.)
Public property FormatProvider (Inherited from TextWriter.)
Public property NewLine (Inherited from TextWriter.)

Top

Methods

  Name Description
Public method Close (Inherited from TextWriter.)
Public method CreateObjRef (Inherited from MarshalByRefObject.)
Public method Dispose() (Inherited from TextWriter.)
Protected method Dispose(Boolean) The Dispose method releases the unmanaged resources that are used by the ConverterWriter and optionally releases the managed resources. (Overrides TextWriter.Dispose(Boolean).)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method Flush The Flush method clears all buffers for this ConverterWriter object and causes any buffered data to be written to the destination TextWriter or stream that it owns. (Overrides TextWriter.Flush().)
Public method GetHashCode (Inherited from Object.)
Public method GetLifetimeService (Inherited from MarshalByRefObject.)
Public method GetType (Inherited from Object.)
Public method InitializeLifetimeService (Inherited from MarshalByRefObject.)
Protected method MemberwiseClone() (Inherited from Object.)
Protected method MemberwiseClone(Boolean) (Inherited from MarshalByRefObject.)
Public method ToString (Inherited from Object.)
Public method Write(Boolean) (Inherited from TextWriter.)
Public method Write(Int32) (Inherited from TextWriter.)
Public method Write(UInt32) (Inherited from TextWriter.)
Public method Write(Int64) (Inherited from TextWriter.)
Public method Write(UInt64) (Inherited from TextWriter.)
Public method Write(Single) (Inherited from TextWriter.)
Public method Write(Double) (Inherited from TextWriter.)
Public method Write(Decimal) (Inherited from TextWriter.)
Public method Write(Object) (Inherited from TextWriter.)
Public method Write(Char) The Write method writes a single character into the destination TextWriter or Stream object that it owns. (Overrides TextWriter.Write(Char).)
Public method Write([]) The Write method converts buffer and writes it to the TextWriter or Stream object that this ConverterWriter owns. (Overrides TextWriter.Write([]).)
Public method Write(String) The Write method converts value and writes it to the TextWriter or Stream object that this ConverterWriter owns. (Overrides TextWriter.Write(String).)
Public method Write(String, Object) (Inherited from TextWriter.)
Public method Write(String, []) (Inherited from TextWriter.)
Public method Write(String, Object, Object) (Inherited from TextWriter.)
Public method Write([], Int32, Int32) The Write method converts and writes count characters from buffer, starting at index, into the TextWriter or Stream that this ConverterWriter owns. (Overrides TextWriter.Write([], Int32, Int32).)
Public method Write(String, Object, Object, Object) (Inherited from TextWriter.)
Public method WriteLine() (Inherited from TextWriter.)
Public method WriteLine(Char) (Inherited from TextWriter.)
Public method WriteLine([]) (Inherited from TextWriter.)
Public method WriteLine(Boolean) (Inherited from TextWriter.)
Public method WriteLine(Int32) (Inherited from TextWriter.)
Public method WriteLine(UInt32) (Inherited from TextWriter.)
Public method WriteLine(Int64) (Inherited from TextWriter.)
Public method WriteLine(UInt64) (Inherited from TextWriter.)
Public method WriteLine(Single) (Inherited from TextWriter.)
Public method WriteLine(Double) (Inherited from TextWriter.)
Public method WriteLine(Decimal) (Inherited from TextWriter.)
Public method WriteLine(Object) (Inherited from TextWriter.)
Public method WriteLine(String) The WriteLine method appends a new line to value, converts the resulting string, and writes it to the TextWriter or Stream object that this ConverterWriter owns. (Overrides TextWriter.WriteLine(String).)
Public method WriteLine(String, Object) (Inherited from TextWriter.)
Public method WriteLine(String, []) (Inherited from TextWriter.)
Public method WriteLine([], Int32, Int32) (Inherited from TextWriter.)
Public method WriteLine(String, Object, Object) (Inherited from TextWriter.)
Public method WriteLine(String, Object, Object, Object) (Inherited from TextWriter.)

Top

Fields

  Name Description
Protected field CoreNewLine (Inherited from TextWriter.)

Top