Indy 9
|
TIdDecoderQuotedPrintable = class(TIdDecoder)
procedure DecodeToStream(AIn: string; ADest: TStream); override;
AIn contains a value in the format generated by TIdEncoderQuotedPrintable.Encode. DecodeToStream will remove any trailing whitespace in AIn before performing the decoding algorithm, in accordance with RFC 2045. If AIn is an empty string (''), DecodeToStream performs no processing and exits from the method.
ADest is a TStream descendant that will receive the un-encoded value of AIn.