Click or drag to resize
MimeKit

TextToText Class

A text to text converter.
Inheritance Hierarchy
SystemObject
  MimeKit.TextTextConverter
    MimeKit.TextTextToText

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public class TextToText : TextConverter

The TextToText type exposes the following members.

Constructors
 NameDescription
Public methodTextToText Initialize a new instance of the TextToText class.
Top
Properties
 NameDescription
Public propertyDetectEncodingFromByteOrderMark 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)
Public propertyFooter Get or set the text that will be appended to the end of the output.
(Inherited from TextConverter)
Public propertyHeader Get or set text that will be prepended to the beginning of the output.
(Inherited from TextConverter)
Public propertyInputEncoding Get or set the input encoding.
(Inherited from TextConverter)
Public propertyInputFormat Get the input format.
(Overrides TextConverterInputFormat)
Public propertyInputStreamBufferSize Get or set the size of the input stream buffer.
(Inherited from TextConverter)
Public propertyOutputEncoding Get or set the output encoding.
(Inherited from TextConverter)
Public propertyOutputFormat Get the output format.
(Overrides TextConverterOutputFormat)
Public propertyOutputStreamBufferSize Get or set the size of the output stream buffer.
(Inherited from TextConverter)
Top
Methods
 NameDescription
Public methodCode exampleConvert(String) Convert text from the InputFormat to the OutputFormat.
(Inherited from TextConverter)
Public methodConvert(Stream, Stream) Convert the contents of source from the InputFormat to the OutputFormat and writes the resulting text to destination.
(Inherited from TextConverter)
Public methodConvert(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)
Public methodConvert(TextReader, Stream) Convert the contents of reader from the InputFormat to the OutputFormat and writes the resulting text to destination.
(Inherited from TextConverter)
Public methodConvert(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))
Public methodEquals
(Inherited from Object)
Protected methodFinalize
(Inherited from Object)
Public methodGetHashCode
(Inherited from Object)
Public methodGetType
(Inherited from Object)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodToString
(Inherited from Object)
Top
Remarks
A text to text converter.
See Also