ConverterWriter constructor (TextWriter, TextConverter)
The ConverterWriter constructor creates a new ConverterWriter object that uses converter to write converted output to destinationWriter.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub New ( _
destinationWriter As TextWriter, _
converter As TextConverter _
)
'Usage
Dim destinationWriter As TextWriter
Dim converter As TextConverter
Dim instance As New ConverterWriter(destinationWriter, _
converter)
public ConverterWriter(
TextWriter destinationWriter,
TextConverter converter
)
Parameters
destinationWriter
Type: System.IO.TextWriterThe TextWriter to write the converted data to.
converter
Type: Microsoft.Exchange.Data.TextConverters.TextConverterThe TextConverter to use for the conversion.