IAppxBlockMapFilesEnumerator::GetCurrent method (appxpackaging.h)
Gets the file at the current position of the enumerator.
Syntax
HRESULT GetCurrent(
[out, retval] IAppxBlockMapFile **file
);
Parameters
[out, retval] file
Type: IAppxBlockMapFile**
The current file.
Return value
Type: HRESULT
If the method succeeds, it returns S_OK. Otherwise, it returns an error code that includes, but is not limited to, those in the following table.
Return code | Description |
---|---|
|
The enumerator has passed the last item in the collection. |
Remarks
The enumerator returned can be empty. In this case, a call to GetHasCurrent returns false. If the enumerator is not empty, it points to the first element, and this method returns the first item. Subsequently, the user should use MoveNext to move through the items, and call GetHasCurrent before using GetCurrent to access the item.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 8 [desktop apps only] |
Minimum supported server | Windows Server 2012 [desktop apps only] |
Target Platform | Windows |
Header | appxpackaging.h |