IAppxManifestPackageId::GetPackageFullName method
Gets the package full name.
Syntax
HRESULT GetPackageFullName( [out, retval] LPWSTR *packageFullName );
Parameters
- packageFullName [out, retval]
-
Type: LPWSTR*
The package full name.
Return value
Type: HRESULT
If the method succeeds, it returns S_OK.
Remarks
The package full name string is a case-insensitive string, which can be used to uniquely identify the package. This string is a serialized form of the package ID, and it is suitable for naming objects such as files and directories.
The caller must free the memory allocated for packageFullName using the CoTaskMemFree function.
Examples
For an example, see Quickstart: Read app package manifest info.
Requirements
|
Minimum supported client |
Windows 8 [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2012 [desktop apps only] |
|
Header |
|
|
IDL |
|
|
IID |
IID_IAppxManifestPackageId is defined as 283ce2d7-7153-4a91-9649-7a0f7240945f |
See also