Pop3Client.LoadMessageInfoListAsync

LoadMessageInfoListAsync(IEnumerable<int>)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(IEnumerable<int> sequenceNumberList)
ParameterTypeDescription
sequenceNumberListIEnumerable`1The sequence numbers list of messages

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IConnection, IEnumerable<int>)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(IConnection connection, 
    IEnumerable<int> sequenceNumberList)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberListIEnumerable`1The sequence numbers list of messages

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IEnumerable<Pop3MessageInfo>)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(
    IEnumerable<Pop3MessageInfo> messageInfoList)
ParameterTypeDescription
messageInfoListIEnumerable`1Message info list

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IConnection, IEnumerable<Pop3MessageInfo>)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(IConnection connection, 
    IEnumerable<Pop3MessageInfo> messageInfoList)
ParameterTypeDescription
connectionIConnectionConnection to a server
messageInfoListIEnumerable`1Message info list

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IEnumerable<int>, CancellationToken)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(
    IEnumerable<int> sequenceNumberList, CancellationToken token)
ParameterTypeDescription
sequenceNumberListIEnumerable`1The sequence numbers list of messages
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IConnection, IEnumerable<int>, CancellationToken)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(IConnection connection, 
    IEnumerable<int> sequenceNumberList, CancellationToken token)
ParameterTypeDescription
connectionIConnectionConnection to a server
sequenceNumberListIEnumerable`1The sequence numbers list of messages
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IEnumerable<Pop3MessageInfo>, CancellationToken)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(
    IEnumerable<Pop3MessageInfo> messageInfoList, CancellationToken token)
ParameterTypeDescription
messageInfoListIEnumerable`1Message info list
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(IConnection, IEnumerable<Pop3MessageInfo>, CancellationToken)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(IConnection connection, 
    IEnumerable<Pop3MessageInfo> messageInfoList, CancellationToken token)
ParameterTypeDescription
connectionIConnectionConnection to a server
messageInfoListIEnumerable`1Message info list
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

Task object, with delegate for this operation

See Also


LoadMessageInfoListAsync(Pop3LoadMessageInfoList)

Loads list of Pop3MessageInfo

public Task<Pop3MessageInfoCollection> LoadMessageInfoListAsync(Pop3LoadMessageInfoList parameters)
ParameterTypeDescription
parametersPop3LoadMessageInfoListThe parameter set

Return Value

Loaded message information list

See Also