ISyncMgrControl::UpdateHandlerCollection 方法 (syncmgr.h)
指示同步中心重新运行处理程序集合,或通知它处理程序集合中处理程序的属性已更改。
语法
HRESULT UpdateHandlerCollection(
[in] REFCLSID rclsidCollectionID,
[in] SYNCMGR_CONTROL_FLAGS nControlFlags
);
参数
[in] rclsidCollectionID
类型: REFCLSID
对处理程序集合的 CLSID 的引用。
[in] nControlFlags
SYNCMGR_CONTROL_FLAGS枚举中的值,该值指定是应以同步方式还是异步执行更新。
返回值
类型: HRESULT
如果该方法成功,则返回 S_OK。 否则,将返回 HRESULT 错误代码。
注解
如果在 nControlFlags 参数中设置了SYNCMGR_CF_WAIT,则在同步中心加载指定的处理程序集合并重新加载所有处理程序和项信息之前, UpdateHandlerCollection 不会返回。
示例
以下示例演示处理程序过程对 ISyncMgrControl::UpdateHandlerCollection 的用法。
void CMyDeviceHandler::MiscProc(...)
{
...
// Get the Sync Center control object.
ISyncMgrControl *pControl = NULL;
hr = CoCreateInstance(CLSID_SyncMgrControl,
CLSCTX_SERVER,
IID_PPV_ARGS(&pControl));
if (SUCCEEDED(hr))
{
// Tell Sync Center that a new computer has been added.
hr = pControl->UpdateHandlerCollection(CLSID_FRSHandlerCollection,
SYNCMGR_CF_NOWAIT);
pControl->Release();
}
...
}
要求
最低受支持的客户端 | Windows Vista [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2008 [仅限桌面应用] |
目标平台 | Windows |
标头 | syncmgr.h |