WebApp Class
These methods are used to load, assemble, and start a web app.
Namespace: Microsoft.Owin.Hosting
Assembly: Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.Hosting.WebApp
Syntax
public static class WebApp
public ref class WebApp abstract sealed
[<AbstractClass>]
[<Sealed>]
type WebApp = class end
Public NotInheritable Class WebApp
Methods
Name | Description | |
---|---|---|
Start(StartOptions) | Start a web app using the given settings and entry point type, using defaults for items not specified. |
|
Start(StartOptions, Action<IAppBuilder>) | Start a web app using the given settings and entry point, using defaults for items not specified. |
|
Start(String) | Start a web app using the given settings and entry point type, using defaults for items not specified. |
|
Start(String, Action<IAppBuilder>) | Start a web app using default settings and the given url and entry point. e.g. Discover the ServerFactory and run at the given url. |
|
Start<TStartup>(StartOptions) | Start a web app using the given settings and entry point type, using defaults for items not specified. |
|
Start<TStartup>(String) | Start a web app using default settings and the given url and entry point type. e.g. Discover the ServerFactory and run at the given url. |
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.Hosting Namespace
Return to top