ImapMessageSet.AddRange Method
Namespace: Rebex.Net
Assembly: Rebex.Imap.dll (version 7.0.9083)
AddRange(Int32, Int32)
Adds messages in the specified sequence number range to the message set.
Declaration
public void AddRange(int from, int to)
Parameters
Type | Name | Description |
---|---|---|
Int32 | from | Lower bound of the range. |
Int32 | to | Upper bound of the range (or Int32.MaxValue if all messages above 'from' are to be included). |
Remarks
Bounds are also a part of the range.
AddRange(String, String)
Adds messages in the specified unique ID range to the message set.
Declaration
public void AddRange(string first, string last)
Parameters
Type | Name | Description |
---|---|---|
String | first | Lower bound of the range. |
String | last | Upper bound of the range. |
Remarks
Bounds are also a part of the range.