Pop3Client.GetMessageUniqueIdAsync

GetMessageUniqueIdAsync(IConnection, int)

Gets the message unique id

public Task<string> GetMessageUniqueIdAsync(IConnection connection, int sequenceNumber)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberInt32The sequence number of the message

Return Value

Task object, with delegate for this operation

See Also


GetMessageUniqueIdAsync(int)

Gets the message unique id

public Task<string> GetMessageUniqueIdAsync(int sequenceNumber)
ParameterTypeDescription
sequenceNumberInt32The sequence number of the message

Return Value

Task object, with delegate for this operation

See Also


GetMessageUniqueIdAsync(IConnection, int, CancellationToken)

Gets the message unique id

public Task<string> GetMessageUniqueIdAsync(IConnection connection, int sequenceNumber, 
    CancellationToken token)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberInt32The sequence number of the message
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

Task object, with delegate for this operation

See Also


GetMessageUniqueIdAsync(int, CancellationToken)

Gets the message unique id

public Task<string> GetMessageUniqueIdAsync(int sequenceNumber, CancellationToken token)
ParameterTypeDescription
sequenceNumberInt32The sequence number of the message
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

Task object, with delegate for this operation

See Also