ImapClient.ChangeMessageFlags

Contents
[ ]

ChangeMessageFlags(IEnumerable<string>, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IEnumerable<string> uidSet, ImapMessageFlags flags)
ParameterTypeDescription
uidSetIEnumerable`1The set of UID for messages
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(IEnumerable<int>, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IEnumerable<int> sequenceSet, ImapMessageFlags flags)
ParameterTypeDescription
sequenceSetIEnumerable`1The set of sequence numbers for messages
flagsImapMessageFlagsThe flags to be removed

See Also


ChangeMessageFlags(IConnection, IEnumerable<string>, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, IEnumerable<string> uidSet, 
    ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
uidSetIEnumerable`1The set of UID for messages
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(IConnection, IEnumerable<int>, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, IEnumerable<int> sequenceSet, 
    ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceSetIEnumerable`1The set of sequence numbers for messages
flagsImapMessageFlagsThe flags to be removed

See Also


ChangeMessageFlags(IEnumerable<string>, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IEnumerable<string> uidSet, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
uidSetIEnumerable`1The set of UID for messages
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IEnumerable<int>, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IEnumerable<int> sequenceSet, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
sequenceSetIEnumerable`1The set of sequence numbers for messages
flagsImapMessageFlagsThe flags to be removed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, IEnumerable<string>, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, IEnumerable<string> uidSet, 
    ImapMessageFlags flags, long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
uidSetIEnumerable`1The set of UID for messages
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, IEnumerable<int>, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, IEnumerable<int> sequenceSet, 
    ImapMessageFlags flags, long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceSetIEnumerable`1The set of sequence numbers for messages
flagsImapMessageFlagsThe flags to be removed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IEnumerable<ImapMessageInfo>, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IEnumerable<ImapMessageInfo> messageInfoSet, ImapMessageFlags flags)
ParameterTypeDescription
messageInfoSetIEnumerable`1The set of ImapMessageInfo
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(IConnection, IEnumerable<ImapMessageInfo>, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, IEnumerable<ImapMessageInfo> messageInfoSet, 
    ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
messageInfoSetIEnumerable`1The set of ImapMessageInfo
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(IEnumerable<ImapMessageInfo>, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IEnumerable<ImapMessageInfo> messageInfoSet, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
messageInfoSetIEnumerable`1The set of ImapMessageInfo
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, IEnumerable<ImapMessageInfo>, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, IEnumerable<ImapMessageInfo> messageInfoSet, 
    ImapMessageFlags flags, long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
messageInfoSetIEnumerable`1The set of ImapMessageInfo
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(string, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(string uniqueId, ImapMessageFlags flags)
ParameterTypeDescription
uniqueIdStringThe uid of the message
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(int, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(int sequenceNumber, ImapMessageFlags flags)
ParameterTypeDescription
sequenceNumberInt32The sequence number of the message
flagsImapMessageFlagsThe flags to be removed

See Also


ChangeMessageFlags(IConnection, string, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, string uniqueId, ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
uniqueIdStringThe uid of the message
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(IConnection, int, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, int sequenceNumber, ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberInt32The sequence number of the message
flagsImapMessageFlagsThe flags to be removed

See Also


ChangeMessageFlags(string, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(string uniqueId, ImapMessageFlags flags, long modificationSequence)
ParameterTypeDescription
uniqueIdStringThe uid of the message
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(int, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(int sequenceNumber, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
sequenceNumberInt32The sequence number of the message
flagsImapMessageFlagsThe flags to be removed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, string, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, string uniqueId, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
uniqueIdStringThe uid of the message
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, int, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, int sequenceNumber, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberInt32The sequence number of the message
flagsImapMessageFlagsThe flags to be removed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(string, string, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(string startUid, string endUid, ImapMessageFlags flags)
ParameterTypeDescription
startUidStringThe starting UID of a message list
endUidStringThe ending UID of a message list
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(int, int, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(int startSequence, int endSequence, ImapMessageFlags flags)
ParameterTypeDescription
startSequenceInt32The starting sequence number of a message list
endSequenceInt32The ending sequence number of a message list
flagsImapMessageFlagsThe flags to be removed

See Also


ChangeMessageFlags(IConnection, string, string, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, string startUid, string endUid, 
    ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
startUidStringThe starting UID of a message list
endUidStringThe ending UID of a message list
flagsImapMessageFlagsThe flags to be changed

See Also


ChangeMessageFlags(IConnection, int, int, ImapMessageFlags)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, int startSequence, int endSequence, 
    ImapMessageFlags flags)
ParameterTypeDescription
connectionIConnectionConnection to a server
startSequenceInt32The starting sequence number of a message list
endSequenceInt32The ending sequence number of a message list
flagsImapMessageFlagsThe flags to be removed

See Also


ChangeMessageFlags(string, string, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(string startUid, string endUid, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
startUidStringThe starting UID of a message list
endUidStringThe ending UID of a message list
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(int, int, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(int startSequence, int endSequence, ImapMessageFlags flags, 
    long modificationSequence)
ParameterTypeDescription
startSequenceInt32The starting sequence number of a message list
endSequenceInt32The ending sequence number of a message list
flagsImapMessageFlagsThe flags to be removed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, string, string, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, string startUid, string endUid, 
    ImapMessageFlags flags, long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
startUidStringThe starting UID of a message list
endUidStringThe ending UID of a message list
flagsImapMessageFlagsThe flags to be changed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


ChangeMessageFlags(IConnection, int, int, ImapMessageFlags, long)

Changes the flags of the message

public void ChangeMessageFlags(IConnection connection, int startSequence, int endSequence, 
    ImapMessageFlags flags, long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
startSequenceInt32The starting sequence number of a message list
endSequenceInt32The ending sequence number of a message list
flagsImapMessageFlagsThe flags to be removed
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also