指定要求實體。
語法
virtual VOID SetEntity(
PVOID pBuffer,
DWORD cbData,
DWORD cbBuffer
) = 0;
參數
pBuffer
包含要求實體之 void 緩衝區的指標。
cbData
, DWORD 其中包含 中的資料 pBuffer 大小。
cbBuffer
DWORD,包含緩衝區的大小 pBuffer ,其大小應大於或等於 cbData 。
傳回值
VOID.
備註
方法 SetEntity 會將預先載入的 HTTP 要求實體主體取代為 參數所指向的 pBuffer 實體主體。 參數 cbData 必須指定 在 中 pBuffer 傳回之要求實體中資料的大小,而 cbBuffer 參數必須指定所指向 pBuffer 之要求實體緩衝區的大小,以位元組為單位。
注意
cbBuffer 應該一律大於或等於 cbData 。
範例
下列程式碼範例示範如何建立執行下列工作的 HTTP 模組:
配置 1 KB 緩衝區。 如果無法配置緩衝區,模組會傳回錯誤並結束。
建立包含回應值的字串。
使用
SetEntity方法指定要求實體,然後結束。
#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>
// NOTE - Data needs to be passed to this module, e.g. a POST request, or it will not appear to return anything.
// Create the module class.
class MyHttpModule : public CHttpModule
{
public:
REQUEST_NOTIFICATION_STATUS
OnReadEntity(
IN IHttpContext * pHttpContext,
IN IReadEntityProvider * pProvider
)
{
// Allocate a 1K buffer for the request entity.
DWORD cbBuffer = 1024;
void * pvBuffer = pHttpContext->AllocateRequestMemory(cbBuffer);
// Test for an error.
if (NULL == pvBuffer)
{
// Set the error status.
pProvider->SetErrorStatus(
HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY));
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
// Create a string to return.
char szBuffer[] = "Name=Value";
// Specify the exact data length.
DWORD cbData = (DWORD) strlen(szBuffer);
// Copy a string into the request entity buffer.
strcpy_s((char*)pvBuffer,cbBuffer,szBuffer);
// Set the request entity to the buffer.
pProvider->SetEntity(pvBuffer,cbData,cbBuffer);
// 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_READ_ENTITY,
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 |
另請參閱
IReadEntityProvider 介面
IReadEntityProvider::GetEntity 方法
IHttpRequest::ReadEntityBody 方法
IHttpRequest::InsertEntityBody 方法