IAppxManifestPackageDependenciesEnumerator::GetCurrent method (appxpackaging.h)

Gets the dependency package at the current position of the enumerator.

Syntax

HRESULT GetCurrent(
  [out, retval] IAppxManifestPackageDependency **dependency
);

Parameters

[out, retval] dependency

Type: IAppxManifestPackageDependency**

The current dependency package.

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
E_BOUNDS
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

See also

IAppxManifestPackageDependenciesEnumerator