RequestDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A function that can process an HTTP request.
public delegate System::Threading::Tasks::Task ^ RequestDelegate(HttpContext ^ context);
public delegate System.Threading.Tasks.Task RequestDelegate(HttpContext context);
type RequestDelegate = delegate of HttpContext -> Task
Public Delegate Function RequestDelegate(context As HttpContext) As Task
Parameters
- context
- HttpContext
The HttpContext for the request.
Return Value
A task that represents the completion of request processing.