Share via


AppProperties.DefaultApp Property

 

Gets or sets the function delegate for “builder.DefaultApp”.

Namespace:   Microsoft.Owin.BuilderProperties
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

public Func<IDictionary<string, object>, Task> DefaultApp { get; set; }
public:
property Func<IDictionary<String^, Object^>^, Task^>^ DefaultApp {
    Func<IDictionary<String^, Object^>^, Task^>^ get();
    void set(Func<IDictionary<String^, Object^>^, Task^>^ value);
}
member DefaultApp : Func<IDictionary<string, Object>, Task> with get, set
Public Property DefaultApp As Func(Of IDictionary(Of String, Object), Task)

Property Value

Type: System.Func<IDictionary<String, Object>, Task>

The function delegate for “builder.DefaultApp”.

See Also

AppProperties Structure
Microsoft.Owin.BuilderProperties Namespace

Return to top