C# 클래스 RemObjects.InternetPack.Messages.Mime.MimeMessage

This is the root of the email tree structure.
Mime.MessagePart for a description about the structure.

A Message (this class) contains the headers of an email message such as: - To - From - Subject - Content-Type - Message-ID which are located in the Headers property.

Use the MimeMessage.MessagePart property to find the actual content of the email message.
파일 보기 프로젝트 열기: remobjects/internetpack

공개 메소드들

메소드 설명
MimeMessage ( ) : System
MimeMessage ( Byte rawMessageContent ) : System

Convenience constructor for Mime.MimeMessage(Byte[], Boolean).

Creates a message from a Byte array. The full message including its body is parsed.

MimeMessage ( Byte rawMessageContent, System.Boolean parseBody ) : System

Constructs a message from a Byte array.

The headers are always parsed, but if parseBody is , the body is not parsed.

ToHttpResponseBody ( StringBuilder sb ) : void

메소드 상세

MimeMessage() 공개 메소드

public MimeMessage ( ) : System
리턴 System

MimeMessage() 공개 메소드

Convenience constructor for Mime.MimeMessage(Byte[], Boolean).

Creates a message from a Byte array. The full message including its body is parsed.
public MimeMessage ( Byte rawMessageContent ) : System
rawMessageContent Byte The Byte array which is the message contents to parse
리턴 System

MimeMessage() 공개 메소드

Constructs a message from a Byte array.

The headers are always parsed, but if parseBody is , the body is not parsed.
public MimeMessage ( Byte rawMessageContent, System.Boolean parseBody ) : System
rawMessageContent Byte The Byte array which is the message contents to parse
parseBody System.Boolean if the body should be parsed, if only headers should be parsed out of the Byte array
리턴 System

ToHttpResponseBody() 공개 메소드

public ToHttpResponseBody ( StringBuilder sb ) : void
sb StringBuilder
리턴 void