Share via


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.String

    The name of the assembly and type entry point.

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