IAppxManifestReader::GetDeviceCapabilities method
Gets an enumerator that iterates through the device capabilities defined in the manifest.
Syntax
HRESULT GetDeviceCapabilities( [out, retval] IAppxManifestDeviceCapabilitiesEnumerator **deviceCapabilities );
Parameters
- deviceCapabilities [out, retval]
-
Type: IAppxManifestDeviceCapabilitiesEnumerator**
The enumerator that iterates through the device capabilities.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Remarks
Device capabilities are specified using the DeviceCapability element in the package manifest.
If no package device capabilities are defined in the manifest, this method returns S_OK with an empty enumerator.
Call the IUnknown::Release method when you have finished using the deviceCapabilities object.
Requirements
|
Minimum supported client |
Windows 8 [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2012 [desktop apps only] |
|
Header |
|
|
IDL |
|
|
IID |
IID_IAppxManifestReader is defined as 4e1bd148-55a0-4480-a3d1-15544710637c |
See also