IHttpRequest::SetHeader 方法
设置或追加指定的 HTTP 请求标头的值。
语法
virtual HRESULT SetHeader(
IN PCSTR pszHeaderName,
IN PCSTR pszHeaderValue,
IN USHORT cchHeaderValue,
IN BOOL fReplace
) = 0;
virtual HRESULT SetHeader(
IN HTTP_HEADER_ID ulHeaderIndex,
IN PCSTR pszHeaderValue,
IN USHORT cchHeaderValue,
IN BOOL fReplace
) = 0;
parameters
pszHeaderName
[IN]指向包含要设置的 HTTP 标头名称的字符串的指针。
ulHeaderIndex
[IN]要设置的 HTTP 标头的 ID。
pszHeaderValue
[IN]指向字符串的指针,该字符串包含要设置的标头的值。
cchHeaderValue
[IN]标头值的长度(以字符为单位),不包括 \0 字符。
fReplace
[IN] true
覆盖现有标头;否则为 false
。
返回值
HRESULT
。 可能的值包括(但并不限于)下表中的项。
值 | 说明 |
---|---|
S_OK | 指示操作成功。 |
ERROR_INVALID_DATA | 指示数据无效 (例如,标头中的数据) 太长。 |
ERROR_INVALID_PARAMETER | 指示指定的参数无效 (例如,参数为 NULL) 。 |
ERROR_NOT_ENOUGH_MEMORY | 指示内存不足,无法执行操作。 |
备注
方法 SetHeader
为当前请求设置 HTTP 标头的值。 方法有两个 SetHeader
重载版本。 使用 ,可以使用 参数中包含的 pszHeaderName
字符串来指定 标头。 另一个重载使用 参数中包含的 ulHeaderIndex
无符号长整数。
参数指定的 pszHeaderName
标头名称可以是请求注释 (RFC) 1945“超文本传输协议 - HTTP/1.0”或 RFC 2616“超文本传输协议 -- HTTP/1.1”中定义的自定义标头或标头。
注意
参数 pszHeaderName
不能设置为 NULL。
参数 ulHeaderIndex
指定枚举中列出的 HTTP 标头的 HTTP_HEADER_ID
ID。
注意
HTTP_HEADER_ID
枚举在 Http.h 头文件中定义。
fReplace
如果 参数为 true
,则指定的标头值将替换现有标头值(如果标头存在)。 如果 fReplace
为 false
,则应将指定的标头值追加到现有标头,并使用逗号分隔该值与标头本身。
示例
下面的代码示例演示如何使用 方法的 SetHeader
两个重载来创建一个 HTTP 模块,该模块将 HTTP User-Agent
和 Accept-Language
标头替换为新值。
#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 );
// Create an HRESULT to receive return values from methods.
HRESULT hr;
// Specify the "User-Agent" header name.
char szHeaderName[] = "User-Agent";
// Specify the "User-Agent" header value.
char szUserAgent[] = "Test Browser";
// Specify the "Accept-Language" header value.
char szAcceptLanguage[] = "en-ie";
// Retrieve a pointer to the request.
IHttpRequest * pHttpRequest = pHttpContext->GetRequest();
// Test for an error.
if (pHttpRequest != NULL)
{
// Replace the "User-Agent" header.
hr = pHttpRequest->SetHeader(
szHeaderName,szUserAgent,
(USHORT)strlen(szUserAgent),true);
// Test for an error.
if (FAILED(hr))
{
// Set the error status.
pProvider->SetErrorStatus( hr );
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
// Replace the "Accept-language" header.
hr = pHttpRequest->SetHeader(
HttpHeaderAcceptLanguage,szAcceptLanguage,
(USHORT)strlen(szAcceptLanguage),true);
// Test for an error.
if (FAILED(hr))
{
// Set the error status.
pProvider->SetErrorStatus( hr );
// End additional processing.
return RQ_NOTIFICATION_FINISH_REQUEST;
}
}
// 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;
}
}
/* MERGEFORMAT 16 Aug 07 5:41 PM */
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)
而不是为每个函数显式声明调用约定。
要求
类型 | 说明 |
---|---|
客户端 | - 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 |
另请参阅
IHttpRequest 接口
IHttpRequest::D eleteHeader 方法
IHttpRequest::GetHeader 方法