IReadEntityProvider::SetEntity 方法
指定请求实体。
语法
virtual VOID SetEntity(
PVOID pBuffer,
DWORD cbData,
DWORD cbBuffer
) = 0;
parameters
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)
而不是为每个函数显式声明调用约定。
要求
类型 | 说明 |
---|---|
客户端 | - 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 |
Header | Httpserv.h |
另请参阅
IReadEntityProvider 接口
IReadEntityProvider::GetEntity 方法
IHttpRequest::ReadEntityBody 方法
IHttpRequest::InsertEntityBody 方法