ImapClient.CommitDeletes

CommitDeletes(int)

Commit the deletions

public void CommitDeletes(int sleep)
ParameterTypeDescription
sleepInt32Wait time complete the operation in milliseconds

See Also


CommitDeletes(IEnumerable<string>)

Commit the deletions This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315

public void CommitDeletes(IEnumerable<string> uidSet)
ParameterTypeDescription
uidSetIEnumerable`1Set of unique identifiers for messages

See Also


CommitDeletes(string)

Commit the deletions This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315

public void CommitDeletes(string uniqueId)
ParameterTypeDescription
uniqueIdStringThe uid of a message

See Also


CommitDeletes(string, string)

Commit the deletions This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315

public void CommitDeletes(string startUid, string endUid)
ParameterTypeDescription
startUidStringThe starting UID of a message list
endUidStringThe ending UID of a message list

See Also


CommitDeletes(IConnection, IEnumerable<string>)

Commit the deletions This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315

public void CommitDeletes(IConnection connection, IEnumerable<string> uidSet)
ParameterTypeDescription
connectionIConnectionConnection to a server
uidSetIEnumerable`1Set of unique identifiers for messages

See Also


CommitDeletes(IConnection, string)

Commit the deletions

public void CommitDeletes(IConnection connection, string uniqueId)
ParameterTypeDescription
connectionIConnectionConnection to a server
uniqueIdStringThe uid of a message

See Also


CommitDeletes(IConnection, string, string)

Commit the deletions This method works only if server supports UIDPLUS extension. Please, read more https://tools.ietf.org/html/rfc4315

public void CommitDeletes(IConnection connection, string startUid, string endUid)
ParameterTypeDescription
connectionIConnectionConnection to a server
startUidStringThe starting UID of a message list
endUidStringThe ending UID of a message list

See Also


CommitDeletes(IConnection)

Commit the deletions

public void CommitDeletes(IConnection connection)
ParameterTypeDescription
connectionIConnectionConnection to a server

See Also


CommitDeletes(IConnection, int)

Commit the deletions

public void CommitDeletes(IConnection connection, int sleep)
ParameterTypeDescription
connectionIConnectionConnection to a server
sleepInt32Wait time complete the operation in milliseconds

See Also


CommitDeletes()

Commit the deletions

public void CommitDeletes()

See Also