ConverterStream constructor (TextWriter, TextConverter)
The ConverterStream constructor creates a new ConverterStream object for writing converted content into destinationWriter by using conversion.
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 ConverterStream(destinationWriter, _
converter)
public ConverterStream(
TextWriter destinationWriter,
TextConverter converter
)
Parameters
destinationWriter
Type: System.IO.TextWriterThe TextWriter to which to write the converted output.
converter
Type: Microsoft.Exchange.Data.TextConverters.TextConverterThe TextConverter object to use for the conversion.