TextConverter members
The TextConverter class is an abstract base class representing a transformation of text or other data from one format to another.
The TextConverter type exposes the following members.
Properties
Name | Description | |
---|---|---|
InputStreamBufferSize | The InputStreamBufferSize property gets or sets the internal input buffer size, in bytes, for stream input. | |
OutputStreamBufferSize | The OutputStreamBufferSize method gets or sets the internal output buffer size, in bytes, for stream output. |
Top
Methods
Name | Description | |
---|---|---|
Convert(Stream, Stream) | The Convert method converts the entire contents of sourceStream from its format to the format specified by this TextConverter object and stores the result in destinationStream. | |
Convert(Stream, TextWriter) | The Convert method converts the entire contents of sourceStream from its format to the format of destinationWriter and writes the result to destinationWriter. | |
Convert(TextReader, Stream) | The Convert method converts the entire contents of sourceReader from its format to the format of destinationStream and stores the result in destinationStream. | |
Convert(TextReader, TextWriter) | The Convert method converts the entire contents of sourceReader from its format to the format of destinationWriter and writes the result to destinationWriter. |
Top
Fields
Name | Description | |
---|---|---|
locked | ||
testBoundaryConditions |
Top