Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 3.63 KB

ihttpcontext-indicatecompletion-method.md

File metadata and controls

50 lines (37 loc) · 3.63 KB
title description ms.date ms.assetid
IHttpContext::IndicateCompletion Method
IHttpContext::IndicateCompletion Method Indicates the completion of asynchronous work and requests that IIS resume execution on the calling thread.
10/07/2016
02555911-f488-b3e9-74d9-97a0b3bd5b89

IHttpContext::IndicateCompletion Method

Indicates the completion of asynchronous work and requests that IIS resume execution on the calling thread.

Syntax

virtual VOID IndicateCompletion(  
   IN REQUEST_NOTIFICATION_STATUS notificationStatus  
) = 0;  

Parameters

notificationStatus
[IN] The notification status of the asyncronous operation.

Return Value

VOID.

Remarks

An HTTP module can use the IndicateCompletion method to indicate that an asynchronous operation has completed and request that IIS resume processing on the calling thread. This behavior is unlike the behavior of the PostCompletion method, which queues the execution to the thread pool.

If the status that is specified by the notificationStatus parameter is not REQUEST_NOTIFICATION_PENDING, the request state computer will continue without reentering the original notification entry point.

Example

The following code example demonstrates how to create an HTTP module that uses the IndicateCompletion method to indicate that an asynchronous operation has completed.

[!code-cppIHttpContextIndicateCompletion#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

IHttpContext Interface
IHttpContext::PostCompletion Method