C# Class Simplify.Web.Core.RequestHandler

Provides OWIN HTTP request handler
Inheritance: IRequestHandler
Exibir arquivo Open project: i4004/Simplify.Web Class Usage Examples

Public Methods

Method Description
ProcessRequest ( IDIContainerProvider containerProvider, IOwinContext context ) : System.Threading.Tasks.Task

Processes the OWIN HTTP request.

RequestHandler ( IControllersRequestHandler controllersRequestHandler, IStaticFilesRequestHandler staticFilesRequestHandler ) : System.Threading.Tasks

Initializes a new instance of the RequestHandler class.

Method Details

ProcessRequest() public method

Processes the OWIN HTTP request.
public ProcessRequest ( IDIContainerProvider containerProvider, IOwinContext context ) : System.Threading.Tasks.Task
containerProvider IDIContainerProvider The DI container provider.
context IOwinContext The context.
return System.Threading.Tasks.Task

RequestHandler() public method

Initializes a new instance of the RequestHandler class.
public RequestHandler ( IControllersRequestHandler controllersRequestHandler, IStaticFilesRequestHandler staticFilesRequestHandler ) : System.Threading.Tasks
controllersRequestHandler IControllersRequestHandler The controllers request handler.
staticFilesRequestHandler IStaticFilesRequestHandler The static files request handler.
return System.Threading.Tasks