EmailConversation.FindMessagesAsync Method

Definition

Overloads

FindMessagesAsync()

Asynchronously gets a batch of messages in the conversation.

FindMessagesAsync(UInt32)

Asynchronously gets a batch of messages in the conversation.

FindMessagesAsync()

Asynchronously gets a batch of messages in the conversation.

public:
 virtual IAsyncOperation<IVectorView<EmailMessage ^> ^> ^ FindMessagesAsync() = FindMessagesAsync;
/// [Windows.Foundation.Metadata.Overload("FindMessagesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<EmailMessage>> FindMessagesAsync();
[Windows.Foundation.Metadata.Overload("FindMessagesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<EmailMessage>> FindMessagesAsync();
function findMessagesAsync()
Public Function FindMessagesAsync () As IAsyncOperation(Of IReadOnlyList(Of EmailMessage))

Returns

The batch of messages.

Attributes

Windows requirements

App capabilities
email emailSystem

See also

Applies to

FindMessagesAsync(UInt32)

Asynchronously gets a batch of messages in the conversation.

public:
 virtual IAsyncOperation<IVectorView<EmailMessage ^> ^> ^ FindMessagesAsync(unsigned int count) = FindMessagesAsync;
/// [Windows.Foundation.Metadata.Overload("FindMessagesWithCountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<EmailMessage>> FindMessagesAsync(uint32_t const& count);
[Windows.Foundation.Metadata.Overload("FindMessagesWithCountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<EmailMessage>> FindMessagesAsync(uint count);
function findMessagesAsync(count)
Public Function FindMessagesAsync (count As UInteger) As IAsyncOperation(Of IReadOnlyList(Of EmailMessage))

Parameters

count
UInt32

unsigned int

uint32_t

The size of the batch of messages to retrieve.

Returns

The batch of messages.

Attributes

Windows requirements

App capabilities
email emailSystem

See also

Applies to