C# 클래스 OpenPOP.MIME.Header.HeaderExtractor

파일 보기 프로젝트 열기: jaddie/WCell-Utility-Bot

공개 메소드들

메소드 설명
ExtractHeaders ( string message, string &rawHeaders, NameValueCollection &headers ) : void

Method that takes a full message and extract the headers from it.

비공개 메소드들

메소드 설명
IsMoreLinesInHeaderValue ( TextReader reader ) : bool

Check if the next line is part of the current header value we are parsing by peeking on the next character of the TextReader. This should only be called while parsing headers

메소드 상세

ExtractHeaders() 공개 정적인 메소드

Method that takes a full message and extract the headers from it.
public static ExtractHeaders ( string message, string &rawHeaders, NameValueCollection &headers ) : void
message string The message to extract headers from
rawHeaders string The portion of the message that was headers
headers System.Collections.Specialized.NameValueCollection A collection of Name and Value pairs of headers
리턴 void