ICertServerPolicy::EnumerateAttributesClose 方法 (certif.h)
EnumerateAttributesClose 方法會釋放與屬性列舉連線的資源。
Syntax
HRESULT EnumerateAttributesClose();
傳回值
VB
如果方法成功,方法會傳回S_OK。如果方法失敗,它會傳回 HRESULT 值,指出錯誤。 如需常見錯誤碼的清單,請參閱 一般 HRESULT 值。
備註
呼叫 EnumerateAttributesSetup 和 之後,所有原則模組都應該呼叫 EnumerateAttributesClose 方法
EnumerateAttributes 方法。
範例
// Close the enumeration.
// hr is defined as an HRESULT.
hr = pCertServerPolicy->EnumerateAttributesClose();
if (FAILED(hr))
{
printf("Failed EnumerateAttributesClose [%x]\n", hr);
goto error;
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 都不支援 |
最低支援的伺服器 | Windows Server 2003 [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | certif.h (包括 Certsrv.h) |
程式庫 | Certidl.lib |
Dll | Certcli.dll |