IWbemBackupRestoreEx::P ause 方法 (wbemcli.h)

IWbemBackupRestoreEx::P ause 方法锁定 Windows Management Instrumentation (WMI) 存储库中的写入操作,并可能导致读取操作被阻止。

语法

HRESULT Pause();

返回值

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

注解

实现 Pause 方法时,应尽快调用 Resume 方法。 如果在 15 (15) 分钟内未调用 Resume ,则会自动为你调用。 在同一对象上调用 Pause 两次而不首先调用 Resume 将失败。 同时对两个对象调用 Pause 可能会导致第二个对象锁定,直到对第一个对象调用 Resume

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

示例

以下 C++ 示例演示如何正确调用 IWbemBackupRestoreEx::P ause 方法。

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

要求

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

另请参阅

IWbemBackupRestoreEx