IWbemBackupRestoreEx::Resume 方法 (wbemcli.h)

IWbemBackUpRestoreEx::Resume 方法在 Windows Management Instrumentation (WMI) 存储库上释放锁,以便操作可以继续。

语法

HRESULT Resume();

返回值

此方法返回一个 HRESULT ,指示方法调用的状态。 以下列表列出了 HRESULT 中包含的值。

注解

调用 Pause 方法时,应始终调用 Resume 方法。 必须在实现 Pause 方法的同一 IWbemBackUpRestoreEx 实例上调用 Resume。 在不调用 Resume 的情况下释放对象会自动实现 Resume 方法。

注意 若要实现 Resume 方法,客户端用户在调用 方法之前必须具有 SE_BACKUP_NAME
 

示例

以下 C++ 示例演示如何调用 IWbemBackUpRestoreEx::Resume 方法。

// The pInt variable is of type IWbemBackupRestoreEx*
pInt->Resume();

要求

   
最低受支持的客户端 Windows Vista
最低受支持的服务器 Windows Server 2008
目标平台 Windows
标头 wbemcli.h (包括 Wbemidl.h)
Library Wbemuuid.lib
DLL Wbemsvc.dll

另请参阅

IWbemBackupRestoreEx