Text |
public class TextToFlowed : TextConverter
The TextToFlowed type exposes the following members.
| Name | Description | |
|---|---|---|
| TextToFlowed | Initialize a new instance of the TextToFlowed class. |
| Name | Description | |
|---|---|---|
| DetectEncodingFromByteOrderMark |
Get or set whether the encoding of the input is detected from the byte order mark or
determined by the InputEncoding property.
(Inherited from TextConverter) | |
| Footer |
Get or set the text that will be appended to the end of the output.
(Inherited from TextConverter) | |
| Header |
Get or set text that will be prepended to the beginning of the output.
(Inherited from TextConverter) | |
| InputEncoding |
Get or set the input encoding.
(Inherited from TextConverter) | |
| InputFormat |
Get the input format.
(Overrides TextConverterInputFormat) | |
| InputStreamBufferSize |
Get or set the size of the input stream buffer.
(Inherited from TextConverter) | |
| OutputEncoding |
Get or set the output encoding.
(Inherited from TextConverter) | |
| OutputFormat |
Get the output format.
(Overrides TextConverterOutputFormat) | |
| OutputStreamBufferSize |
Get or set the size of the output stream buffer.
(Inherited from TextConverter) |
| Name | Description | |
|---|---|---|
| Convert(String) |
Convert text from the InputFormat to the OutputFormat.
(Inherited from TextConverter) | |
| Convert(Stream, Stream) |
Convert the contents of source from the InputFormat to the
OutputFormat and writes the resulting text to destination.
(Inherited from TextConverter) | |
| Convert(Stream, TextWriter) |
Convert the contents of source from the InputFormat to the
OutputFormat and uses the writer to write the resulting text.
(Inherited from TextConverter) | |
| Convert(TextReader, Stream) |
Convert the contents of reader from the InputFormat to the
OutputFormat and writes the resulting text to destination.
(Inherited from TextConverter) | |
| Convert(TextReader, TextWriter) |
Convert the contents of reader from the InputFormat to the
OutputFormat and uses the writer to write the resulting text.
(Overrides TextConverterConvert(TextReader, TextWriter)) | |
| Equals | (Inherited from Object) | |
| Finalize | (Inherited from Object) | |
| GetHashCode | (Inherited from Object) | |
| GetType | (Inherited from Object) | |
| MemberwiseClone | (Inherited from Object) | |
| ToString | (Inherited from Object) |
Wraps text to conform with the flowed text format described in rfc3676.
The Content-Type header for the wrapped output text should be set to text/plain; format=flowed; delsp=yes.