다음을 통해 공유


FileInformationFactory.GetItemsAsync 메서드

정의

오버로드

GetItemsAsync()

컬렉션의 모든 항목에 대한 정보를 포함하는 IStorageItemInformation 개체의 컬렉션을 검색합니다.

GetItemsAsync(UInt32, UInt32)

컬렉션의 항목 범위에 대한 정보를 포함하는 IStorageItemInformation 개체의 컬렉션을 검색합니다.

GetItemsAsync()

컬렉션의 모든 항목에 대한 정보를 포함하는 IStorageItemInformation 개체의 컬렉션을 검색합니다.

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

반환

이 메서드가 성공적으로 완료되면 FileInformationFolderInformation 개체의 목록(IVectorView 형식)을 반환합니다.

특성

추가 정보

적용 대상

GetItemsAsync(UInt32, UInt32)

컬렉션의 항목 범위에 대한 정보를 포함하는 IStorageItemInformation 개체의 컬렉션을 검색합니다.

public:
 virtual IAsyncOperation<IVectorView<IStorageItemInformation ^> ^> ^ GetItemsAsync(unsigned int startIndex, unsigned int maxItemsToRetrieve) = GetItemsAsync;
/// [Windows.Foundation.Metadata.Overload("GetItemsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<IStorageItemInformation>> GetItemsAsync(uint32_t const& startIndex, uint32_t const& maxItemsToRetrieve);
[Windows.Foundation.Metadata.Overload("GetItemsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<IStorageItemInformation>> GetItemsAsync(uint startIndex, uint maxItemsToRetrieve);
function getItemsAsync(startIndex, maxItemsToRetrieve)
Public Function GetItemsAsync (startIndex As UInteger, maxItemsToRetrieve As UInteger) As IAsyncOperation(Of IReadOnlyList(Of IStorageItemInformation))

매개 변수

startIndex
UInt32

unsigned int

uint32_t

범위에 있는 첫 번째 항목의 인덱스(0부터 시작)입니다.

maxItemsToRetrieve
UInt32

unsigned int

uint32_t

정보를 검색할 최대 항목 수입니다.

반환

이 메서드가 성공적으로 완료되면 FileInformationFolderInformation 개체의 목록(IVectorView 형식)을 반환합니다.

특성

추가 정보

적용 대상