IAppxFactory3::CreateAppInstallerReader 方法 (appxpackaging.h)
重要
有些資訊與發行前版本產品有關,在正式發行前可能會大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用選擇性參數指定應用程式安裝程式檔案的預期摘要,建立 IAppInstallerReader的實例。
語法
HRESULT CreateAppInstallerReader(
[in] IStream *inputStream,
[in, optional] LPCWSTR expectedDigest,
[out] IAppxAppInstallerReader **appInstallerReader
);
參數
[in] inputStream
提供應用程式安裝程式檔案內容的 IStream 。
[in, optional] expectedDigest
包含預期摘要的 LPCWSTR,這是應用程式安裝程式檔案的哈希表示法。
[out] appInstallerReader
接收已建立的 IAppInstallerReader 實例。
傳回值
如果方法成功,它會傳回 S_OK。 否則,它會傳回錯誤碼,其中包含但不限於下表中的錯誤碼。
傳回碼 | Description |
---|---|
APPX_E_DIGEST_MISMATCH | 對象的摘要不符合 expectedDigest 中提供的摘要。 |
備註
呼叫 IAppxDigestProvider::GetDigest,以取得 expecteDigest 參數的摘要字串。
規格需求
需求 | 值 |
---|---|
標頭 | appxpackaging.h |