AppLoader.Load Method (String, IList<String>)
Executes the loader, searching for the entry point by name.
Namespace: Microsoft.Owin.Hosting.Loader
Assembly: Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)
Syntax
public virtual Action<IAppBuilder> Load(
string appName,
IList<string> errors
)
public:
virtual Action<IAppBuilder^>^ Load(
String^ appName,
IList<String^>^ errors
)
abstract Load :
appName:string *
errors:IList<string> -> Action<IAppBuilder>
override Load :
appName:string *
errors:IList<string> -> Action<IAppBuilder>
Public Overridable Function Load (
appName As String,
errors As IList(Of String)
) As Action(Of IAppBuilder)
Parameters
appName
Type: System.StringThe name of the assembly and type entry point.
errors
Type: System.Collections.Generic.IList<String>The error collection.
Return Value
Type: System.Action<IAppBuilder>
The Action<T> object that represents the loading operation.
Implements
IAppLoader.Load(String, IList<String>)
See Also
AppLoader Class
Microsoft.Owin.Hosting.Loader Namespace
Return to top