Click or drag to resize
MimeKit

Base64Decoder Class

Incrementally decodes content encoded with the base64 encoding.
Inheritance Hierarchy
SystemObject
  MimeKit.EncodingsBase64Decoder

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

The Base64Decoder type exposes the following members.

Constructors
 NameDescription
Public methodBase64Decoder Initialize a new instance of the Base64Decoder class.
Top
Properties
 NameDescription
Public propertyEncoding Get the encoding.
Top
Methods
 NameDescription
Public methodClone Clone the Base64Decoder 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
Base64 is an encoding often used in MIME to encode binary content such as images and other types of multi-media to ensure that the data remains intact when sent via 7bit transports such as SMTP.
See Also