Sends a UID STORE command.
Sends a UID STORE command with a range of message UIDs.
public void UidStore(int,int,string,string);
Sends a UID STORE command with a single message UID.
public void UidStore(int,string,string);
Sends a UID STORE command with a set of message UIDs.
public void UidStore(string,string,string);
A UID STORE command is similar to a STORE command, with one difference: a UID STORE command specifies messages by their unique identifiers (UIDs) instead of their sequence numbers.
The third version of the overloaded method allows flags for multiple messages to be changed, as specified by a set of message UIDs. The messageSet parameter should specify a set of UIDs in the syntax given in RFC 3501. In this syntax, individual UIDs or UID ranges are separated by commas, and ranges are indicated by a colon.
Imap4Client Class | Hunny.Mail Namespace | Store method | UID command in the IMAP4 specification