FileInformationFactory.GetItemsAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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))
반환
이 메서드가 성공적으로 완료되면 FileInformation 및 FolderInformation 개체의 목록(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
정보를 검색할 최대 항목 수입니다.
반환
이 메서드가 성공적으로 완료되면 FileInformation 및 FolderInformation 개체의 목록(IVectorView 형식)을 반환합니다.
- 특성