Pop3Client.DeleteMessage

DeleteMessage(IConnection, int)

Deletes the message

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

Remarks

The POP3 server marks the message as deleted. The POP3 server does not actually delete the message until the POP3 session enters the UPDATE state.

See Also


DeleteMessage(IConnection, string)

Deletes the message

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

Remarks

The POP3 server marks the message as deleted. The POP3 server does not actually delete the message until the POP3 session enters the UPDATE state.

See Also


DeleteMessage(int)

Deletes the message

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

Remarks

The POP3 server marks the message as deleted. The POP3 server does not actually delete the message until the POP3 session enters the UPDATE state.

See Also


DeleteMessage(string)

Deletes the message

public void DeleteMessage(string uniqueId)
ParameterTypeDescription
uniqueIdStringThe unique id of the message

Remarks

The POP3 server marks the message as deleted. The POP3 server does not actually delete the message until the POP3 session enters the UPDATE state.

See Also