ApplicationData.SetVersionAsync 方法

定义

设置应用数据存储区中应用程序数据的版本号。

public:
 virtual IAsyncAction ^ SetVersionAsync(unsigned int desiredVersion, ApplicationDataSetVersionHandler ^ handler) = SetVersionAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction SetVersionAsync(uint32_t const& desiredVersion, ApplicationDataSetVersionHandler const& handler);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction SetVersionAsync(uint desiredVersion, ApplicationDataSetVersionHandler handler);
function setVersionAsync(desiredVersion, handler)
Public Function SetVersionAsync (desiredVersion As UInteger, handler As ApplicationDataSetVersionHandler) As IAsyncAction

参数

desiredVersion
UInt32

unsigned int

uint32_t

新的版本号。

handler
ApplicationDataSetVersionHandler

设置版本事件处理程序。

返回

一个对象,用于管理异步设置版本操作。

属性

注解

版本控制使你能够更改应用的未来版本中使用的应用程序数据格式,而不会导致与以前版本的应用出现兼容性问题。 应用检查数据存储中的数据版本,如果低于应用预期的版本,应用应将应用程序数据更新为新格式并更新版本。

强烈建议使用顺序版本号和递增版本号,从 1 开始。

适用于