ICertServerExit::EnumerateExtensionsSetup 메서드(certif.h)
EnumerateExtensionsSetup 메서드는 현재 컨텍스트와 연결된 첫 번째 인증서 확장에 대한 내부 열거형 포인터를 초기화합니다.
열거형 프로세스는 데이터베이스에 기록된 인증서 확장명(사용하지 않도록 설정되고 인증서에 표시되지 않는 인증서 확장명)을 열거합니다.
구문
HRESULT EnumerateExtensionsSetup(
[in] LONG Flags
);
매개 변수
[in] Flags
이 매개 변수는 예약되어 있으며 0으로 설정해야 합니다.
반환 값
VB
메서드가 성공하면 메서드는 S_OK 반환합니다.메서드가 실패하면 오류를 나타내는 HRESULT 값을 반환합니다. 일반적인 오류 코드 목록은 일반 HRESULT 값을 참조하세요.
설명
이 메서드를 사용하기 전에 ICertServerExit::SetContext 를 호출해야 합니다.
예제
// Set the context. The value nContext (long) would be the same
// as the context parameter in ICertExit::Notify.
// hr is defined as an HRESULT.
hr = pCertServerExit->SetContext( nContext );
if (FAILED(hr))
{
printf("Failed SetContext [%x]\n", hr);
goto error;
}
// Setup the enumeration.
hr = pCertServerExit->EnumerateExtensionsSetup( 0 );
if (FAILED(hr))
{
printf("Failed EnumerateExtensionsSetup [%x]\n", hr);
goto error;
}
요구 사항
지원되는 최소 클라이언트 | 지원되는 버전 없음 |
지원되는 최소 서버 | Windows Server 2003 [데스크톱 앱만 해당] |
대상 플랫폼 | Windows |
헤더 | certif.h(Certsrv.h 포함) |
라이브러리 | Certidl.lib |
DLL | Certcli.dll |