ICertPolicy::ShutDown 方法 (certpol.h)
在終止伺服器之前,伺服器引擎會呼叫 ShutDown 方法。
呼叫 ShutDown 時,原則模組應該會清除並停止。 保證在呼叫 ShutDown 之後,不會有任何要求送達。
Syntax
HRESULT ShutDown();
傳回值
VB
如果方法成功,方法會傳回S_OK。如果方法失敗,它會傳回指出錯誤的 HRESULT 值。 如需常見錯誤碼的清單,請參閱 一般 HRESULT 值。
備註
當您撰寫自定義原則模組時,請實作此方法。
範例
#include <windows.h>
#include <stdio.h>
#include <Certpol.h>
STDMETHODIMP CCertPolicy::ShutDown()
{
// Clean up resources used by this process.
// Display message that this method has been called.
if ( fDebug )
{
printf("Policy module Shutdown was called\n");
}
return( S_OK );
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 都不支援 |
最低支援的伺服器 | Windows Server 2003 [僅限桌面應用程式] |
目標平台 | Windows |
標頭 | certpol.h (包含 Certsrv.h) |
程式庫 | Certidl.lib |