|
Static Public Member Functions |
|
static string | Fold (string s) |
| static string | Encode (string toencode) |
| | Encodes a very large string into the Quoted-Printable encoding for transmission via SMTP.
|
| static string | Encode (string toencode, int charsperline) |
| | Encodes a very large string into the Quoted-Printable encoding for transmission via SMTP.
|
| static string | EncodeSmall (string s) |
| | Encodes a small string into the Quoted-Printable encoding for transmission via SMTP. The string is not split into lines of X characters like the string that the Encode method returns.
|
| static string | FormatEncodedString (string s, int maxcharlen) |
| | Formats a quoted-printable string into lines equal to maxcharlen, following all protocol rules such as byte stuffing. This method is called automatically by the Encode method and the EncodeFile method.
|
|
static string | FormatEncodedString (string s, int maxcharlen, string linesep) |
| static string | Decode (string encoded) |
| | Decodes a Quoted-Printable string of any size into it's original text.
|
Public Attributes |
| const int | RFC_1521_MAX_CHARS_PER_LINE = 75 |
| | Gets the maximum number of characters per quoted-printable line as defined in the RFC minus 1 to allow for the = character (soft line break).
|