IAppxManifestReader::GetPackageDependencies method (appxpackaging.h)

Gets an enumerator that iterates through dependencies defined in the manifest.

Syntax

HRESULT GetPackageDependencies(
  [out, retval] IAppxManifestPackageDependenciesEnumerator **dependencies
);

Parameters

[out, retval] dependencies

Type: IAppxManifestPackageDependenciesEnumerator**

The enumerator that iterates through the dependencies.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Remarks

If no package dependencies are found in the manifest, this method returns S_OK with an empty enumerator.

Call the IUnknown::Release method when you have finished using the dependencies object.

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

IAppxManifestReader