StartContext.Startup Property

Gets or sets the application entry point where the pipeline is defined.

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

Syntax

'Declaration
Public Property Startup As Action(Of IAppBuilder)
    Get 
    Set
'Usage
Dim instance As StartContext 
Dim value As Action(Of IAppBuilder)

value = instance.Startup

instance.Startup = value
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
function get Startup () : Action<IAppBuilder>
function set Startup (value : Action<IAppBuilder>)

Property Value

Type: System.Action<IAppBuilder>
The application entry point where the pipeline is defined.

See Also

Reference

StartContext Class

Microsoft.Owin.Hosting.Engine Namespace