EmailConversation.FindMessagesAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
FindMessagesAsync() |
대화에서 메시지 일괄 처리를 비동기적으로 가져옵니다. |
FindMessagesAsync(UInt32) |
대화에서 메시지 일괄 처리를 비동기적으로 가져옵니다. |
FindMessagesAsync()
대화에서 메시지 일괄 처리를 비동기적으로 가져옵니다.
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))
반환
메시지의 일괄 처리입니다.
- 특성
Windows 요구 사항
앱 기능 |
email
emailSystem
|
추가 정보
적용 대상
FindMessagesAsync(UInt32)
대화에서 메시지 일괄 처리를 비동기적으로 가져옵니다.
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))
매개 변수
- count
-
UInt32
unsigned int
uint32_t
검색할 메시지 일괄 처리의 크기입니다.
반환
메시지의 일괄 처리입니다.
- 특성
Windows 요구 사항
앱 기능 |
email
emailSystem
|