StartContext Class
This class contains the relevant application and server state during startup.
Namespace: Microsoft.Owin.Hosting.Engine
Assembly: Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.Hosting.Engine.StartContext
Syntax
public class StartContext
public ref class StartContext
type StartContext = class end
Public Class StartContext
Constructors
Name | Description | |
---|---|---|
![]() |
StartContext(StartOptions) | Create a new StartContext with the given options. If the given options do not define any settings, then settings will be loaded from the config. |
Properties
Name | Description | |
---|---|---|
![]() |
App | The constructed OWIN application pipeline. |
![]() |
Builder | The IAppBuilder used to construct the OWIN application pipeline. |
![]() |
EnvironmentData | A list of keys and their associated values that will be injected by the host into each OWIN request environment. |
![]() |
Options | The initial options provided to the constructor. |
![]() |
ServerFactory | The factory used to instantiate the server. |
![]() |
Startup | The application entry point where the pipeline is defined. |
![]() |
TraceOutput | A TextWriter for writing diagnostic data to. |
Methods
Name | Description | |
---|---|---|
![]() |
Equals(Object) | (Inherited from Object.) |
![]() |
Finalize() | (Inherited from Object.) |
![]() |
GetHashCode() | (Inherited from Object.) |
![]() |
GetType() | (Inherited from Object.) |
![]() |
MemberwiseClone() | (Inherited from Object.) |
![]() |
ToString() | (Inherited from Object.) |
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.Engine Namespace
Return to top