共用方式為


IHttpRequest::GetRawHttpRequest 方法

傳回結構,其中包含原始 HTTP 要求。

語法

virtual HTTP_REQUEST* GetRawHttpRequest(  
   VOID  
) = 0;  

參數

此方法不會採用任何參數。

傳回值

HTTP_REQUEST結構的指標。

備註

方法 GetRawHttpRequest 會擷取原始要求,並傳回包含目前要求實體之結構的指標 HTTP_REQUEST

注意

結構 HTTP_REQUEST 定義于 Http.h 檔案中。

此結構的存留期是由伺服器所控制,而且結構可在要求結束之前使用。

範例

下列程式碼範例示範如何使用 GetRawHttpRequest 方法來建立 HTTP 模組,以擷取 HTTP_REQUEST 目前要求的 結構。 然後,程式碼範例會示範如何使用 結構來擷取要求的 HTTP 動詞、HTTP 主要版本和 HTTP 次要版本。

#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>

// Create the module class.
class MyHttpModule : public CHttpModule
{
public:
    REQUEST_NOTIFICATION_STATUS
    OnBeginRequest(
        IN IHttpContext * pHttpContext,
        IN IHttpEventProvider * pProvider
    )
    {
        UNREFERENCED_PARAMETER( pProvider );

        // Retrieve a pointer to the request.
        IHttpRequest * pHttpRequest = pHttpContext->GetRequest();

        // Test for an error.
        if (pHttpRequest != NULL)
        {
            // Return the raw HTTP_REQUEST structure. (Defined in the Http.h file.)
            HTTP_REQUEST * pRawRequest = pHttpRequest->GetRawHttpRequest();
            // Test for an error.
            if (pRawRequest != NULL)
            {
                // Retrieve the ID of the HTTP verb.
                // (From the HTTP_VERB enumeration defined in the Http.h file.)
                long HttpVerb = pRawRequest->Verb;
                // Retrieve the HTTP version.
                // (From the HTTP_VERSION structure defined in the Http.h file.)
                USHORT HttpMajorVersion = pRawRequest->Version.MajorVersion;
                USHORT HttpMinorVersion = pRawRequest->Version.MinorVersion;
            }
        }

        // Return processing to the pipeline.
        return RQ_NOTIFICATION_CONTINUE;
    }
};
// Create the module's class factory.
class MyHttpModuleFactory : public IHttpModuleFactory
{
public:
    HRESULT
    GetHttpModule(
        OUT CHttpModule ** ppModule, 
        IN IModuleAllocator * pAllocator
    )
    {
        UNREFERENCED_PARAMETER( pAllocator );

        // Create a new instance.
        MyHttpModule * pModule = new MyHttpModule;

        // Test for an error.
        if (!pModule)
        {
            // Return an error if the factory cannot create the instance.
            return HRESULT_FROM_WIN32( ERROR_NOT_ENOUGH_MEMORY );
        }
        else
        {
            // Return a pointer to the module.
            *ppModule = pModule;
            pModule = NULL;
            // Return a success status.
            return S_OK;
        }            
    }

    void Terminate()
    {
        // Remove the class from memory.
        delete this;
    }
};

// Create the module's exported registration function.
HRESULT
__stdcall
RegisterModule(
    DWORD dwServerVersion,
    IHttpModuleRegistrationInfo * pModuleInfo,
    IHttpServer * pGlobalInfo
)
{
    UNREFERENCED_PARAMETER( dwServerVersion );
    UNREFERENCED_PARAMETER( pGlobalInfo );

    // Set the request notifications and exit.
    return pModuleInfo->SetRequestNotifications(
        new MyHttpModuleFactory,
        RQ_BEGIN_REQUEST,
        0
    );
}


您的模組必須匯出 RegisterModule 函式。 您可以為專案建立模組定義 (.def) 檔案,或使用 參數編譯模組 /EXPORT:RegisterModule 來匯出此函式。 如需詳細資訊,請參閱 逐步解說:使用機器碼建立 Request-Level HTTP 模組

您可以選擇性地使用呼叫慣例編譯器代碼, __stdcall (/Gz) 而不是明確宣告每個函式的呼叫慣例。

規格需求

類型 描述
Client - Windows Vista 上的 IIS 7.0
- Windows 7 上的 IIS 7.5
- Windows 8 上的 IIS 8.0
- Windows 10上的 IIS 10.0
伺服器 - Windows Server 2008 上的 IIS 7.0
- Windows Server 2008 R2 上的 IIS 7.5
- Windows Server 2012 上的 IIS 8.0
- Windows Server 2012 R2 上的 IIS 8.5
- Windows Server 2016上的 IIS 10.0
產品 - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0
- IIS Express 7.5、IIS Express 8.0、IIS Express 10.0
標頭 Httpserv.h

另請參閱

IHttpRequest 介面
IHttpResponse::GetRawHttpResponse 方法