IHttpResponse::SetErrorDescription 方法
指定自定义错误说明。
语法
virtual HRESULT SetErrorDescription(
IN PCWSTR pszDescription,
IN DWORD cchDescription,
IN BOOL fHtmlEncode = TRUE
) = 0;
parameters
pszDescription
[IN]指向包含自定义错误说明的字符串的指针。
cchDescription
[IN]一个 DWORD
,它包含 中 pszDescription
字符串的长度(以字符为单位)。
fHtmlEncode
[IN] true
如果 中的 pszDescription
字符串应编码为 HTML,则为 ;否则为 false
。
返回值
HRESULT
。 可能的值包括(但并不限于)下表中的项。
值 | 说明 |
---|---|
S_OK | 指示操作成功。 |
ERROR_INVALID_PARAMETER | 指示在其中一个参数中传递了无效值。 |
备注
开发人员使用 SetErrorDescription
方法来指定自定义错误说明。 IIS 在 IIS 返回错误消息时,会将自定义错误说明显示为发送到 Web 客户端的详细信息的一部分。
示例
下面的代码示例演示如何创建执行以下任务的 HTTP 模块:
使用 IHttpContext::GetResponse 方法检索指向 IHttpResponse 接口的 指针。
使用 IHttpResponse::GetStatus 方法检索当前 HTTP 状态代码。
如果当前 HTTP 状态代码是 404.0 错误,则使用 IHttpResponse::GetErrorDescription 方法检索当前自定义错误说明。
如果当前未定义任何自定义错误说明,请使用
SetErrorDescription
方法设置自定义错误说明。
#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>
// Create the module class.
class MyHttpModule : public CHttpModule
{
public:
REQUEST_NOTIFICATION_STATUS
OnSendResponse(
IN IHttpContext * pHttpContext,
IN ISendResponseProvider * pProvider
)
{
UNREFERENCED_PARAMETER( pProvider );
// Retrieve a a pointer to the current response.
IHttpResponse * pHttpResponse = pHttpContext->GetResponse();
// Test for errors.
if (NULL != pHttpResponse)
{
USHORT uStatusCode = 0;
USHORT uSubStatus = 0;
// Retrieve the current HTTP status code.
pHttpResponse->GetStatus(&uStatusCode,&uSubStatus);
// Process only 404.0 errors.
if (uStatusCode==404 && uSubStatus==0)
{
DWORD cchDescription = 0;
// Retrieve the current error description.
PCWSTR pwszErrorDescription =
pHttpResponse->GetErrorDescription(&cchDescription);
// Process only if no error description is currently defined.
if (cchDescription==0)
{
// Define the new error description.
PCWSTR wszNewDescription =
L"The file that you requested cannot be found.";
// Configure the new error description.
pHttpResponse->SetErrorDescription(
wszNewDescription,wcslen(wszNewDescription),TRUE);
}
}
}
// 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_SEND_RESPONSE,
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 |