Share via


StartContext.Startup Property

 

The application entry point where the pipeline is defined.

Namespace:   Microsoft.Owin.Hosting.Engine
Assembly:  Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)

Syntax

public Action<IAppBuilder> Startup { get; set; }
public:
property Action<IAppBuilder^>^ Startup {
    Action<IAppBuilder^>^ get();
    void set(Action<IAppBuilder^>^ value);
}
member Startup : Action<IAppBuilder> with get, set
Public Property Startup As Action(Of IAppBuilder)

Property Value

Type: System.Action<IAppBuilder>

Returns Action<T>.

See Also

StartContext Class
Microsoft.Owin.Hosting.Engine Namespace

Return to top