AppInstallManager.SearchForUpdatesForUserAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SearchForUpdatesForUserAsync(User, String, String, String, String, AppUpdateOptions) |
搜索指定应用和用户的更新,以及允许强制应用重启和生成遥测数据的选项。 |
SearchForUpdatesForUserAsync(User, String, String, String, String) |
使用生成遥测数据的选项搜索指定应用和用户的更新。 |
SearchForUpdatesForUserAsync(User, String, String, String, String, AppUpdateOptions)
搜索指定应用和用户的更新,以及允许强制应用重启和生成遥测数据的选项。
public:
virtual IAsyncOperation<AppInstallItem ^> ^ SearchForUpdatesForUserAsync(User ^ user, Platform::String ^ productId, Platform::String ^ skuId, Platform::String ^ correlationVector, Platform::String ^ clientId, AppUpdateOptions ^ updateOptions) = SearchForUpdatesForUserAsync;
/// [Windows.Foundation.Metadata.Overload("SearchForUpdatesWithUpdateOptionsForUserAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppInstallItem> SearchForUpdatesForUserAsync(User const& user, winrt::hstring const& productId, winrt::hstring const& skuId, winrt::hstring const& correlationVector, winrt::hstring const& clientId, AppUpdateOptions const& updateOptions);
[Windows.Foundation.Metadata.Overload("SearchForUpdatesWithUpdateOptionsForUserAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppInstallItem> SearchForUpdatesForUserAsync(User user, string productId, string skuId, string correlationVector, string clientId, AppUpdateOptions updateOptions);
function searchForUpdatesForUserAsync(user, productId, skuId, correlationVector, clientId, updateOptions)
Public Function SearchForUpdatesForUserAsync (user As User, productId As String, skuId As String, correlationVector As String, clientId As String, updateOptions As AppUpdateOptions) As IAsyncOperation(Of AppInstallItem)
参数
- user
- User
一个 对象,用于标识要为此操作指定的用户。
- productId
-
String
Platform::String
winrt::hstring
要查询更新的应用的产品 ID。
- skuId
-
String
Platform::String
winrt::hstring
要查询更新的应用的 SKU ID。
- correlationVector
-
String
Platform::String
winrt::hstring
可用于生成遥测数据的相关向量字符串。
- clientId
-
String
Platform::String
winrt::hstring
调用方 ID。
- updateOptions
- AppUpdateOptions
为操作提供其他选项,包括允许强制应用重启的功能。
返回
一个异步操作,在成功完成时返回一个代表可用更新的 AppInstallItem 。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1803 (在 10.0.17134.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
|
应用功能 |
runFullTrust
|
适用于
SearchForUpdatesForUserAsync(User, String, String, String, String)
使用生成遥测数据的选项搜索指定应用和用户的更新。
public:
virtual IAsyncOperation<AppInstallItem ^> ^ SearchForUpdatesForUserAsync(User ^ user, Platform::String ^ productId, Platform::String ^ skuId, Platform::String ^ catalogId, Platform::String ^ correlationVector) = SearchForUpdatesForUserAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppInstallItem> SearchForUpdatesForUserAsync(User const& user, winrt::hstring const& productId, winrt::hstring const& skuId, winrt::hstring const& catalogId, winrt::hstring const& correlationVector);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppInstallItem> SearchForUpdatesForUserAsync(User user, string productId, string skuId, string catalogId, string correlationVector);
function searchForUpdatesForUserAsync(user, productId, skuId, catalogId, correlationVector)
Public Function SearchForUpdatesForUserAsync (user As User, productId As String, skuId As String, catalogId As String, correlationVector As String) As IAsyncOperation(Of AppInstallItem)
参数
- user
- User
一个 对象,用于标识要为此操作指定的用户。
- productId
-
String
Platform::String
winrt::hstring
要查询更新的应用的产品 ID。
- skuId
-
String
Platform::String
winrt::hstring
要查询更新的应用的 SKU ID。
- catalogId
-
String
Platform::String
winrt::hstring
要查询更新的应用的目录 ID。
- correlationVector
-
String
Platform::String
winrt::hstring
可用于生成遥测数据的相关向量字符串。
返回
一个异步操作,在成功完成时返回一个代表可用更新的 AppInstallItem 。
- 属性
Windows 要求
设备系列 |
Windows 10 Anniversary Edition (在 10.0.14393.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v3.0 中引入)
|
应用功能 |
runFullTrust
|