Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 3.6 KB

File metadata and controls

49 lines (36 loc) · 3.6 KB
title IScriptMapInfo::GetAllowedVerbs Method
description Learn how the IScriptMapInfo::GetAllowedVerbs method retrieves the list of allowed verbs for a script map.
ms.date 10/07/2016
ms.assetid d3e0a65b-859d-b782-9469-4979ae0fb7bd

IScriptMapInfo::GetAllowedVerbs Method

Retrieves the list of allowed verbs for a script map.

Syntax

virtual PCSTR GetAllowedVerbs(  
   VOID  
) const = 0;  

Parameters

This method takes no parameters.

Return Value

A pointer to a string that contains the list of allowed verbs.

Remarks

Developers can use the GetAllowedVerbs method to retrieve the list of allowed HTTP verbs for a page handler. For example, if you request a static HTML page that is hosted by an [!INCLUDEiisver] Web site, the static file handler may be configured to allow all HTTP verbs. However, if you if you request a dynamic ASP page that is hosted by the same [!INCLUDEiisver] Web site, the ASP page handler may be configured to allow only the GET and POST verbs.

Note

Web administrators can configure the list of allowed verbs by using [!INCLUDEiismgr].

Example

The following code example demonstrates how to create an HTTP module that retrieves a pointer to an IHttpContext::IScriptMapInfo interface. The example then uses the GetAllowedVerbs method to retrieve the list of verbs that are allowed for the script map. The module returns the list of allowed verbs to a Web client and then exits.

[!code-cppIScriptMapInfoGetAllowedVerbs#1]

Your module must export the RegisterModule function. You can export this function by creating a module definition (.def) file for your project, or you can compile the module by using the /EXPORT:RegisterModule switch. For more information, see Walkthrough: Creating a Request-Level HTTP Module By Using Native Code.

You can optionally compile the code by using the __stdcall (/Gz) calling convention instead of explicitly declaring the calling convention for each function.

Requirements

Type Description
Client - IIS 7.0 on [!INCLUDEwinvista]
- IIS 7.5 on Windows 7
- IIS 8.0 on Windows 8
- IIS 10.0 on Windows 10
Server - IIS 7.0 on [!INCLUDEwinsrv2008]
- IIS 7.5 on Windows Server 2008 R2
- IIS 8.0 on Windows Server 2012
- IIS 8.5 on Windows Server 2012 R2
- IIS 10.0 on Windows Server 2016
Product - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0
- [!INCLUDEiisexp75], [!INCLUDEiisexp80], [!INCLUDEiisexp100]
Header Httpserv.h

See Also

IScriptMapInfo Interface