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
System_CAPS_pubmethod OwinHttpHandler()

Processes requests using the default OWIN application.

Properties

Name Description
System_CAPS_pubproperty IsReusable

Gets a value indicating whether another request can use the System.Web.IHttpHandler instance.

Methods

Name Description
System_CAPS_pubmethod BeginProcessRequest(HttpContextBase, AsyncCallback, Object)

Initiates an asynchronous call to the HTTP handler.

System_CAPS_pubmethod EndProcessRequest(IAsyncResult)

Provides an asynchronous process End method when the process ends.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IHttpAsyncHandler.BeginProcessRequest(HttpContext, AsyncCallback, Object)

Initiates an asynchronous call to the HTTP handler.

System_CAPS_pubinterfaceSystem_CAPS_privmethod 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