AppLoaderFactory.Create Method (Func<String, IList<String>, Action<IAppBuilder>>)
Create a new chained app loader.
Namespace: Microsoft.Owin.Hosting.Loader
Assembly: Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)
Syntax
public virtual Func<string, IList<string>, Action<IAppBuilder>> Create(
Func<string, IList<string>, Action<IAppBuilder>> nextLoader
)
public:
virtual Func<String^, IList<String^>^, Action<IAppBuilder^>^>^ Create(
Func<String^, IList<String^>^, Action<IAppBuilder^>^>^ nextLoader
)
abstract Create :
nextLoader:Func<string, IList<string>, Action<IAppBuilder>> -> Func<string, IList<string>, Action<IAppBuilder>>
override Create :
nextLoader:Func<string, IList<string>, Action<IAppBuilder>> -> Func<string, IList<string>, Action<IAppBuilder>>
Public Overridable Function Create (
nextLoader As Func(Of String, IList(Of String), Action(Of IAppBuilder))
) As Func(Of String, IList(Of String), Action(Of IAppBuilder))
Parameters
- nextLoader
Type: System.Func<String, IList<String>, Action<IAppBuilder>>
Return Value
Type: System.Func<String, IList<String>, Action<IAppBuilder>>
Returns Func<T1, T2, TResult>.
Implements
IAppLoaderFactory.Create(Func<String, IList<String>, Action<IAppBuilder>>)
See Also
AppLoaderFactory Class
Microsoft.Owin.Hosting.Loader Namespace
Return to top