Imap.GetMimeMessage Method
Namespace: Rebex.Net
Assembly: Rebex.Imap.dll (version 7.0.9313)
GetMimeMessage(Int32)
Downloads the message with the specified sequence number
and loads it into an instance of Mime
Declaration
public MimeMessage GetMimeMessage(int sequenceNumber)
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | sequenceNumber | Message sequence number. |
Returns
| Type | Description |
|---|---|
| Mime |
A downloaded message. |
Remarks
Uses IMAP FETCH command to retrieve the message.
By default, this method marks the message as read. To prevent this behavior, set the Usetrue.
GetMimeMessage(String)
Downloads the message with the specified unique ID
and loads it into an instance of Mime
Declaration
public MimeMessage GetMimeMessage(string uniqueId)
Parameters
| Type | Name | Description |
|---|---|---|
| String | uniqueId | Message unique ID. |
Returns
| Type | Description |
|---|---|
| Mime |
A downloaded message. |
Remarks
Uses IMAP FETCH command to retrieve the message.
By default, this method marks the message as read. To prevent this behavior, set the Usetrue.