ICertView::SetResultColumn 메서드(certview.h)
SetResultColumn 메서드는 Certificate Services 데이터베이스의 사용자 지정된 뷰 결과 집합에 대한 열을 지정합니다.
구문
HRESULT SetResultColumn(
[in] LONG ColumnIndex
);
매개 변수
[in] ColumnIndex
결과 집합에 포함할 열의 인덱스(0부터 시작)입니다.
반환 값
VB
메서드가 성공하면 메서드는 S_OK 반환합니다.메서드가 실패하면 오류를 나타내는 HRESULT 값을 반환합니다. 일반적인 오류 코드 목록은 일반 HRESULT 값을 참조하세요.
설명
SetResultColumn 메서드를 호출하기 전에 SetResultColumnCount 메서드를 호출하여 결과 집합에 있을 열 수를 지정해야 합니다. SetResultColumn 메서드에 대한 호출은 다음 조건에서 실패합니다.
- 열 수를 지정하지 않았습니다.
- SetResultColumn은 SetResultColumnCount 호출에 지정된 열 수보다 더 많이 호출 됩니다.
-
SetResultColumnCount 는 미리 정의된 열 집합을 지정했습니다. 이 메서드는 cResultColumnCount 매개 변수가 다음 값 중 하나일 때 미리 정의된 열 집합을 지정합니다.
- CV_COLUMN_LOG_DEFAULT
- CV_COLUMN_LOG_FAILED_DEFAULT
- CV_COLUMN_QUEUE_DEFAULT
결과 집합에 필요한 각 열에 대해 SetResultColumn 메서드를 호출해야 합니다. 이러한 호출이 성공적으로 완료되면 OpenView 메서드가 호출될 때 각 호출에 지정된 열이 결과 집합에 포함됩니다.
예제
HRESULT hr;
LONG nCount;
LONG i;
// Determine the number of columns in the entire database.
// pCertView is a pointer to ICertView.
hr = pCertView->GetColumnCount(FALSE, &nCount);
if (FAILED(hr))
{
printf("Failed GetColumnCount - %x\n", hr);
goto error;
}
hr = pCertView->SetResultColumnCount( nCount );
if (FAILED(hr))
{
printf("Failed SetResultColumnCount - %x\n", hr);
goto error;
}
// Place each column in the view.
for (i = 0; i < nCount; i++)
{
hr = pCertView->SetResultColumn(i);
if (FAILED(hr))
{
printf("Failed SetResultColumn (%d) - %x\n", i, hr );
goto error;
}
}
// Call ICertView::OpenView, and so on.
// ...
error:
{
// Clean up resources, and so on.
}
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | 지원되는 버전 없음 |
지원되는 최소 서버 | Windows Server 2003 [데스크톱 앱만 해당] |
대상 플랫폼 | Windows |
헤더 | certview.h(Certsrv.h 포함) |
라이브러리 | Certidl.lib |
DLL | Certadm.dll |