ICertServerPolicy::SetContext メソッド (certif.h)

SetContext メソッドは、Certificate Services への後続の呼び出しのコンテキストとして使用する要求を指定します。

構文

HRESULT SetContext(
  [in] LONG Context
);

パラメーター

[in] Context

要求を指定します。 このパラメーターは、 の Context パラメーターで返される同じ値に設定する必要があります。
ICertPolicy::VerifyRequest メソッド。

戻り値

VB

メソッドが成功した場合、メソッドは S_OKを返します。

メソッドが失敗した場合は、エラーを示す HRESULT 値を返します。 一般的なエラー コードの一覧については、「 共通 HRESULT 値」を参照してください。

注釈

ポリシー モジュールは、インターフェイスが有効な要求を参照できるように、他の ICertServerPolicy メソッドを呼び出す前に、まず SetContext メソッドを呼び出す必要があります。

// Set the context. The value nContext (long) would be the same
// as the context parameter in ICertPolicy::VerifyRequest.
// hr is defined as an HRESULT.
hr = pCertServerPolicy->SetContext( nContext );
if (FAILED(hr))
{
    printf("Failed SetContext [%x]\n", hr);
    goto error;
}

要件

要件
サポートされている最小のクライアント サポートなし
サポートされている最小のサーバー Windows Server 2003 (デスクトップ アプリのみ)
対象プラットフォーム Windows
ヘッダー certif.h (Certsrv.h を含む)
Library Certidl.lib
[DLL] Certcli.dll

こちらもご覧ください

ICertPolicy::VerifyRequest

ICertServerPolicy