OwinRouteHandler Constructor

Initialize an OwinRouteHandler.

Namespace:  Microsoft.Owin.Host.SystemWeb
Assembly:  Microsoft.Owin.Host.SystemWeb (in Microsoft.Owin.Host.SystemWeb.dll)

Syntax

'Declaration
Public Sub New ( _
    startup As Action(Of IAppBuilder) _
)
'Usage
Dim startup As Action(Of IAppBuilder)

Dim instance As New OwinRouteHandler(startup)
public OwinRouteHandler(
    Action<IAppBuilder> startup
)
public:
OwinRouteHandler(
    Action<IAppBuilder^>^ startup
)
new : 
        startup:Action<IAppBuilder> -> OwinRouteHandler
public function OwinRouteHandler(
    startup : Action<IAppBuilder>
)

Parameters

  • startup
    Type: System.Action<IAppBuilder>
    The method to initialize the pipeline that processes requests for the route.

See Also

Reference

OwinRouteHandler Class

Microsoft.Owin.Host.SystemWeb Namespace