UUDecoder Class |
public class UUDecoder : IMimeDecoder
The UUDecoder type exposes the following members.
Name | Description | |
---|---|---|
UUDecoder | Initialize a new instance of the UUDecoder class. | |
UUDecoder(Boolean) | Initialize a new instance of the UUDecoder class. |
Name | Description | |
---|---|---|
Clone | Clone the UUDecoder with its current state. | |
Decode(Byte*, Int32, Byte*) | Decode the specified input into the output buffer. | |
Decode(Byte, Int32, Int32, Byte) | Decode the specified input into the output buffer. | |
Equals | (Inherited from Object) | |
EstimateOutputLength | Estimate the length of the output. | |
Finalize | (Inherited from Object) | |
GetHashCode | (Inherited from Object) | |
GetType | (Inherited from Object) | |
MemberwiseClone | (Inherited from Object) | |
Reset | Reset the decoder. | |
ToString | (Inherited from Object) |
The UUEncoding is an encoding that predates MIME and was used to encode binary content such as images and other types of multi-media to ensure that the data remained intact when sent via 7bit transports such as SMTP.
These days, the UUEncoding has largely been deprecated in favour of the base64 encoding, however, some older mail clients still use it.