C# Class Simplify.Web.Core.RequestHandler

Provides OWIN HTTP request handler
Inheritance: IRequestHandler
Afficher le fichier Open project: i4004/Simplify.Web Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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.
Résultat System.Threading.Tasks.Task

RequestHandler() public méthode

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.
Résultat System.Threading.Tasks