ICertPolicy::Initialize メソッド (certpol.h)

Initialize メソッドは、ポリシー モジュールが初期化タスクを実行できるように、サーバー エンジンによって呼び出されます。

構文

HRESULT Initialize(
  [in] const BSTR strConfig
);

パラメーター

[in] strConfig

証明書サービスのセットアップ時に入力された証明機関の名前を表します。 構成文字列名の詳細については、「 ICertConfig2」を参照してください。

戻り値

VB

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

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

注釈

カスタム ポリシー モジュールを記述するときは、このメソッドを実装します。

#include <windows.h>
#include <Certpol.h>

STDMETHODIMP CCertPolicy::Initialize(
    /* [in] */ BSTR const strConfig)
{
    // strConfig can be used by the Policy module.
    // Here, it is stored in a BSTR member variable.
    // m_strConfig is an application-defined variable.
    // Call SysFreeString to free m_strConfig when done.
    m_strConfig = SysAllocString( strConfig );
    // Check to determine whether there was enough memory.
    if (NULL == m_strConfig)
        return ( E_OUTOFMEMORY );  // Not enough memory

    return( S_OK );
}

要件

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

こちらもご覧ください

ICertConfig

ICertPolicy

ICertPolicy2