StartContext.App Property

Gets or sets the constructed OWIN application pipeline.

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

Syntax

'Declaration
Public Property App As Func(Of IDictionary(Of String, Object), Task)
    Get 
    Set
'Usage
Dim instance As StartContext 
Dim value As Func(Of IDictionary(Of String, Object), Task)

value = instance.App

instance.App = value
public Func<IDictionary<string, Object>, Task> App { get; set; }
public:
property Func<IDictionary<String^, Object^>^, Task^>^ App {
    Func<IDictionary<String^, Object^>^, Task^>^ get ();
    void set (Func<IDictionary<String^, Object^>^, Task^>^ value);
}
member App : Func<IDictionary<string, Object>, Task> with get, set
function get App () : Func<IDictionary<String, Object>, Task>
function set App (value : Func<IDictionary<String, Object>, Task>)

Property Value

Type: System.Func<IDictionary<String, Object>, Task>
The constructed OWIN application pipeline.

See Also

Reference

StartContext Class

Microsoft.Owin.Hosting.Engine Namespace