ICertServerExit::EnumerateAttributesSetup 方法 (certif.h)
EnumerateAttributesSetup 方法會將內部列舉指標初始化為與目前內容相關聯的第一個要求屬性。
語法
HRESULT EnumerateAttributesSetup(
[in] LONG Flags
);
參數
[in] Flags
此參數是保留的,而且必須設定為零。
傳回值
VB
如果方法成功,方法會傳回S_OK。如果方法失敗,它會傳回 HRESULT 值,指出錯誤。 如需常見錯誤碼的清單,請參閱 一般 HRESULT 值。
備註
您必須在使用此方法之前呼叫 ICertServerExit::SetContext 。
範例
// Set up the enumeration.
hr = pCertServerExit->EnumerateAttributesSetup(0);
if (FAILED(hr))
{
printf("Failed EnumerateAttributesSetup [%x]\n", hr);
goto error;
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 都不支援 |
最低支援的伺服器 | Windows Server 2003 [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | certif.h (包括 Certsrv.h) |
程式庫 | Certidl.lib |
Dll | Certcli.dll |