IAppxManifestReader2::GetQualifiedResources method (appxpackaging.h)

Gets an enumerator that iterates through the qualified resources that are defined in the manifest.

Syntax

HRESULT GetQualifiedResources(
  [out, retval] IAppxManifestQualifiedResourcesEnumerator **resources
);

Parameters

[out, retval] resources

Type: IAppxManifestQualifiedResourcesEnumerator**

The enumerator that iterates through the qualified resources.

Return value

Type: HRESULT

If the method succeeds, it returns S_OK.

Remarks

Resources are specified using the Resources element in the manifest.

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

Requirements

Requirement Value
Minimum supported client Windows 8.1 [desktop apps only]
Minimum supported server Windows Server 2012 R2 [desktop apps only]
Target Platform Windows
Header appxpackaging.h

See also

IAppxManifestReader2