StartContext.App Property
The constructed OWIN application pipeline.
Namespace: Microsoft.Owin.Hosting.Engine
Assembly: Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)
Syntax
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
Public Property App As Func(Of IDictionary(Of String, Object), Task)
Property Value
Type: System.Func<IDictionary<String, Object>, Task>
Returns Func<T, TResult>.
See Also
StartContext Class
Microsoft.Owin.Hosting.Engine Namespace
Return to top