Click or drag to resize
MimeKit

QuotedPrintableDecoder Class

Incrementally decodes content encoded with the quoted-printable encoding.
Inheritance Hierarchy
SystemObject
  MimeKit.EncodingsQuotedPrintableDecoder

Namespace: MimeKit.Encodings
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public class QuotedPrintableDecoder : IMimeDecoder

The QuotedPrintableDecoder type exposes the following members.

Constructors
 NameDescription
Public methodQuotedPrintableDecoder Initialize a new instance of the QuotedPrintableDecoder class.
Public methodQuotedPrintableDecoder(Boolean) Initialize a new instance of the QuotedPrintableDecoder class.
Top
Properties
 NameDescription
Public propertyEncoding Get the encoding.
Top
Methods
 NameDescription
Public methodClone Clone the QuotedPrintableDecoder with its current state.
Public methodDecode(Byte*, Int32, Byte*) Decode the specified input into the output buffer.
Public methodDecode(Byte, Int32, Int32, Byte) Decode the specified input into the output buffer.
Public methodEquals
(Inherited from Object)
Public methodEstimateOutputLength Estimate the length of the output.
Protected methodFinalize
(Inherited from Object)
Public methodGetHashCode
(Inherited from Object)
Public methodGetType
(Inherited from Object)
Protected methodMemberwiseClone
(Inherited from Object)
Public methodReset Reset the decoder.
Public methodToString
(Inherited from Object)
Top
Remarks
Quoted-Printable is an encoding often used in MIME to textual content outside of the ASCII range in order to ensure that the text remains intact when sent via 7bit transports such as SMTP.
See Also