Méthode | Description | |
---|---|---|
Accept ( MimeKit.MimeVisitor visitor ) : void |
Dispatches to the specific visit method for this MIME entity. This default implementation for MimeKit.MessagePartial nodes calls MimeKit.MimeVisitor.VisitMessagePartial. Override this method to call into a more specific method on a derived visitor class of the MimeKit.MimeVisitor class. However, it should still support unknown visitors by calling MimeKit.MimeVisitor.VisitMessagePartial. |
|
Join ( IEnumerable |
Joins the specified message/partial parts into the complete message. Combines all of the message/partial fragments into its original, complete, message. |
|
Join ( |
Joins the specified message/partial parts into the complete message. Combines all of the message/partial fragments into its original, complete, message. |
|
MessagePartial ( MimeKit.MimeEntityConstructorArgs args ) : System |
Initializes a new instance of the MimeKit.MessagePartial class. This constructor is used by MimeKit.MimeParser. |
|
MessagePartial ( string id, int number, int total ) : System |
Initializes a new instance of the MimeKit.MessagePartial class. Creates a new message/partial entity. Three (3) parameters must be specified in the Content-Type header of a message/partial: id, number, and total. The "id" parameter is a unique identifier used to match the parts together. The "number" parameter is the sequential (1-based) index of the partial message fragment. The "total" parameter is the total number of pieces that make up the complete message. |
|
Split ( |
Splits the specified message into multiple messages. Splits the specified message into multiple messages, each with a message/partial body no larger than the max size specified. |
Méthode | Description | |
---|---|---|
CloneMessage ( |
||
PartialCompare ( |
public Accept ( MimeKit.MimeVisitor visitor ) : void | ||
visitor | MimeKit.MimeVisitor | The visitor. |
Résultat | void |
public static Join ( IEnumerable |
||
partials | IEnumerable |
The list of partial message parts. |
Résultat |
public static Join ( |
||
options | The parser options to use. | |
partials | IEnumerable |
The list of partial message parts. |
Résultat |
public MessagePartial ( MimeKit.MimeEntityConstructorArgs args ) : System | ||
args | MimeKit.MimeEntityConstructorArgs | Information used by the constructor. |
Résultat | System |
public MessagePartial ( string id, int number, int total ) : System | ||
id | string | The id value shared among the partial message parts. |
number | int | The (1-based) part number for this partial message part. |
total | int | The total number of partial message parts. |
Résultat | System |
public static Split ( |
||
message | The message. | |
maxSize | int | The maximum size for each message body. |
Résultat | IEnumerable |