OwinHttpHandler Class
Processes requests from System.Web as OWIN requests.
Namespace: Microsoft.Owin.Host.SystemWeb
Assembly: Microsoft.Owin.Host.SystemWeb (in Microsoft.Owin.Host.SystemWeb.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.Host.SystemWeb.OwinHttpHandler
Syntax
public sealed class OwinHttpHandler : IHttpAsyncHandler, IHttpHandler
public ref class OwinHttpHandler sealed : IHttpAsyncHandler,
IHttpHandler
[<Sealed>]
type OwinHttpHandler =
class
interface IHttpAsyncHandler
interface IHttpHandler
end
Public NotInheritable Class OwinHttpHandler
Implements IHttpAsyncHandler, IHttpHandler
Constructors
Name | Description | |
---|---|---|
![]() |
OwinHttpHandler() | Processes requests using the default OWIN application. |
Properties
Name | Description | |
---|---|---|
![]() |
IsReusable | Gets a value indicating whether another request can use the System.Web.IHttpHandler instance. |
Methods
Name | Description | |
---|---|---|
![]() |
BeginProcessRequest(HttpContextBase, AsyncCallback, Object) | Initiates an asynchronous call to the HTTP handler. |
![]() |
EndProcessRequest(IAsyncResult) | Provides an asynchronous process End method when the process ends. |
![]() |
Equals(Object) | (Inherited from Object.) |
![]() |
GetHashCode() | (Inherited from Object.) |
![]() |
GetType() | (Inherited from Object.) |
![]() |
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
![]() ![]() |
IHttpAsyncHandler.BeginProcessRequest(HttpContext, AsyncCallback, Object) | Initiates an asynchronous call to the HTTP handler. |
![]() ![]() |
IHttpHandler.ProcessRequest(HttpContext) | Processes the request for the HTTP handler. |
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.Owin.Host.SystemWeb Namespace
Return to top