ImapClient.UndeleteMessage

UndeleteMessage(IConnection, int)

Marks a message with the specified sequence number as not deleted

public void UndeleteMessage(IConnection connection, int sequenceNumber)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberInt32The sequence number of the message

See Also


UndeleteMessage(IConnection, string)

Marks a message with the specified sequence number as not deleted.

public void UndeleteMessage(IConnection connection, string uniqueId)
ParameterTypeDescription
connectionIConnectionConnection to a server
uniqueIdStringThe unique Id of the message

See Also


UndeleteMessage(int)

Marks a message with the specified sequence number as not deleted

public void UndeleteMessage(int sequenceNumber)
ParameterTypeDescription
sequenceNumberInt32The sequence number of the message

See Also


UndeleteMessage(string)

Marks a message with the specified sequence number as not deleted.

public void UndeleteMessage(string uniqueId)
ParameterTypeDescription
uniqueIdStringThe unique Id of the message

See Also


UndeleteMessage(IConnection, int, long)

Marks a message with the specified sequence number as not deleted

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

See Also


UndeleteMessage(IConnection, string, long)

Marks a message with the specified sequence number as not deleted.

public void UndeleteMessage(IConnection connection, string uniqueId, long modificationSequence)
ParameterTypeDescription
connectionIConnectionConnection to a server
uniqueIdStringThe unique Id of the message
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


UndeleteMessage(int, long)

Marks a message with the specified sequence number as not deleted

public void UndeleteMessage(int sequenceNumber, long modificationSequence)
ParameterTypeDescription
sequenceNumberInt32The sequence number of the message
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also


UndeleteMessage(string, long)

Marks a message with the specified sequence number as not deleted.

public void UndeleteMessage(string uniqueId, long modificationSequence)
ParameterTypeDescription
uniqueIdStringThe unique Id of the message
modificationSequenceInt64Modification sequence. Please, read more https://tools.ietf.org/html/rfc7162

See Also