C# 클래스 Microsoft.Legal.MatterCenter.Utility.QuotedPrintable

The QuotedPrintable class encodes and decodes strings and files that either were encoded or need encoded in the Quoted-Printable MIME encoding for Internet mail. The encoding methods of the class use pointers wherever possible to guarantee the fastest possible encoding times for any size file or string. The decoding methods use only the .NET framework classes.
파일 보기 프로젝트 열기: Microsoft/mattercenter 1 사용 예제들

공개 메소드들

메소드 설명
Decode ( string encoded ) : string

Decodes a Quoted-Printable string of any size into it's original text.

HexDecoder ( string line ) : string

Decode the string and generate the hexadecimal code for the input string.

HexDecoderEvaluator ( Match matchValue ) : string

Generate the hexadecimal code which needs to be replace in string when match found.

비공개 메소드들

메소드 설명
QuotedPrintable ( ) : System

Prevents a default instance of the QuotedPrintable class from being created.

메소드 상세

Decode() 공개 정적인 메소드

Decodes a Quoted-Printable string of any size into it's original text.
public static Decode ( string encoded ) : string
encoded string /// The encoded string to decode. ///
리턴 string

HexDecoder() 공개 정적인 메소드

Decode the string and generate the hexadecimal code for the input string.
public static HexDecoder ( string line ) : string
line string string to decode
리턴 string

HexDecoderEvaluator() 공개 정적인 메소드

Generate the hexadecimal code which needs to be replace in string when match found.
public static HexDecoderEvaluator ( Match matchValue ) : string
matchValue System.Text.RegularExpressions.Match matching value
리턴 string