RouteCollectionExtensions Class

 

Provides extension methods for registering OWIN applications as System.Web routes.

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

Inheritance Hierarchy

System.Object
  System.Web.Routing.RouteCollectionExtensions

Syntax

public static class RouteCollectionExtensions
[ExtensionAttribute]
public ref class RouteCollectionExtensions abstract sealed 
[<AbstractClass>]
[<Sealed>]
type RouteCollectionExtensions = class end
<ExtensionAttribute>
Public NotInheritable Class RouteCollectionExtensions

Methods

Name Description
System_CAPS_pubmethodSystem_CAPS_static MapOwinPath(RouteCollection, String)

Registers a route for the default OWIN application.

System_CAPS_pubmethodSystem_CAPS_static MapOwinPath(RouteCollection, String, Action<IAppBuilder>)

Invokes the System.Action startup delegate to build the OWIN application and then registers a route for it on the given path.

System_CAPS_pubmethodSystem_CAPS_static MapOwinPath(RouteCollection, String, String)

Registers a route for the default OWIN application.

System_CAPS_pubmethodSystem_CAPS_static MapOwinPath(RouteCollection, String, String, Action<IAppBuilder>)

Invokes the System.Action startup delegate to build the OWIN application and then registers a route for it on the given path.

System_CAPS_pubmethodSystem_CAPS_static MapOwinPath<TApp>(RouteCollection, String, TApp)

Registers a route for a specific OWIN application entry point.

System_CAPS_pubmethodSystem_CAPS_static MapOwinPath<TApp>(RouteCollection, String, String, TApp)

Registers a route for a specific OWIN application entry point.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, RouteValueDictionary, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, RouteValueDictionary, RouteValueDictionary, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, RouteValueDictionary, RouteValueDictionary, RouteValueDictionary, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, String, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, String, RouteValueDictionary, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, String, RouteValueDictionary, RouteValueDictionary, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

System_CAPS_pubmethodSystem_CAPS_static MapOwinRoute(RouteCollection, String, String, RouteValueDictionary, RouteValueDictionary, RouteValueDictionary, Action<IAppBuilder>)

Provides a way to define routes for an OWIN pipeline.

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

System.Web.Routing Namespace

Return to top