AppInstallManager.StartProductInstallAsync 方法

定义

重载

StartProductInstallAsync(String, String, String, String, AppInstallOptions)

启动指定应用或应用捆绑包的安装,并能够指定其他安装选项,例如是否允许强制应用重启。

StartProductInstallAsync(String, String, String, String, Boolean, Boolean, String, PackageVolume)

启动指定应用或应用捆绑包的安装。

StartProductInstallAsync(String, String, String, String, AppInstallOptions)

启动指定应用或应用捆绑包的安装,并能够指定其他安装选项,例如是否允许强制应用重启。

public:
 virtual IAsyncOperation<IVectorView<AppInstallItem ^> ^> ^ StartProductInstallAsync(Platform::String ^ productId, Platform::String ^ flightId, Platform::String ^ clientId, Platform::String ^ correlationVector, AppInstallOptions ^ installOptions) = StartProductInstallAsync;
/// [Windows.Foundation.Metadata.Overload("StartProductInstallWithOptionsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppInstallItem>> StartProductInstallAsync(winrt::hstring const& productId, winrt::hstring const& flightId, winrt::hstring const& clientId, winrt::hstring const& correlationVector, AppInstallOptions const& installOptions);
[Windows.Foundation.Metadata.Overload("StartProductInstallWithOptionsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppInstallItem>> StartProductInstallAsync(string productId, string flightId, string clientId, string correlationVector, AppInstallOptions installOptions);
function startProductInstallAsync(productId, flightId, clientId, correlationVector, installOptions)
Public Function StartProductInstallAsync (productId As String, flightId As String, clientId As String, correlationVector As String, installOptions As AppInstallOptions) As IAsyncOperation(Of IReadOnlyList(Of AppInstallItem))

参数

productId
String

Platform::String

winrt::hstring

要安装的应用的产品 ID。

flightId
String

Platform::String

winrt::hstring

要安装的应用的外部测试版 ID。

clientId
String

Platform::String

winrt::hstring

调用方 ID。

correlationVector
String

Platform::String

winrt::hstring

可用于生成遥测数据的相关向量字符串。

installOptions
AppInstallOptions

为操作提供其他选项,包括允许强制应用重启的功能。

返回

一个异步操作,在成功完成后,返回已添加到安装队列的应用捆绑包) (应用或应用集。 如果使用 异步编程,则结果类型是 AppInstallItem 项的只读列表/矢量。 (可以使用适用于 C++ 或 JavaScript 的 IVectorView<AppInstallItem> 的 API、适用于 .NET 的 IReadOnlyList<AppInstallItem> 的 API )

属性

Windows 要求

设备系列
Windows 10, version 1803 (在 10.0.17134.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
应用功能
runFullTrust

适用于

StartProductInstallAsync(String, String, String, String, Boolean, Boolean, String, PackageVolume)

启动指定应用或应用捆绑包的安装。

public:
 virtual IAsyncOperation<IVectorView<AppInstallItem ^> ^> ^ StartProductInstallAsync(Platform::String ^ productId, Platform::String ^ catalogId, Platform::String ^ flightId, Platform::String ^ clientId, bool repair, bool forceUseOfNonRemovableStorage, Platform::String ^ correlationVector, PackageVolume ^ targetVolume) = StartProductInstallAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<AppInstallItem>> StartProductInstallAsync(winrt::hstring const& productId, winrt::hstring const& catalogId, winrt::hstring const& flightId, winrt::hstring const& clientId, bool const& repair, bool const& forceUseOfNonRemovableStorage, winrt::hstring const& correlationVector, PackageVolume const& targetVolume);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<AppInstallItem>> StartProductInstallAsync(string productId, string catalogId, string flightId, string clientId, bool repair, bool forceUseOfNonRemovableStorage, string correlationVector, PackageVolume targetVolume);
function startProductInstallAsync(productId, catalogId, flightId, clientId, repair, forceUseOfNonRemovableStorage, correlationVector, targetVolume)
Public Function StartProductInstallAsync (productId As String, catalogId As String, flightId As String, clientId As String, repair As Boolean, forceUseOfNonRemovableStorage As Boolean, correlationVector As String, targetVolume As PackageVolume) As IAsyncOperation(Of IReadOnlyList(Of AppInstallItem))

参数

productId
String

Platform::String

winrt::hstring

要安装的应用的产品 ID。

catalogId
String

Platform::String

winrt::hstring

要安装的应用的目录 ID。

flightId
String

Platform::String

winrt::hstring

要安装的应用的外部测试版 ID。

clientId
String

Platform::String

winrt::hstring

调用方 ID。

repair
Boolean

bool

如果为 True,则尝试修复已安装的应用的安装;否则为 false。

forceUseOfNonRemovableStorage
Boolean

bool

如果为 True,则将应用安装到不可移动存储,即使用户已将应用配置为安装到 SD 卡;如果为 false,则将应用安装到不可移动存储或 SD 卡根据用户的设置。

correlationVector
String

Platform::String

winrt::hstring

可用于生成遥测数据的相关向量字符串。

targetVolume
PackageVolume

将安装应用或应用捆绑包的包存储卷。

返回

一个异步操作,在成功完成后,返回已添加到安装队列的应用捆绑包) (应用或应用集。 如果使用 异步编程,则结果类型是 AppInstallItem 项的只读列表/矢量。 (可以使用适用于 C++ 或 JavaScript 的 IVectorView<AppInstallItem> 的 API、适用于 .NET 的 IReadOnlyList<AppInstallItem> 的 API )

属性

Windows 要求

设备系列
Windows 10 Anniversary Edition (在 10.0.14393.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v3.0 中引入)
应用功能
runFullTrust

适用于