Interface IAssemblyLoadEngine
Assembly loader engine
Namespace: FluentMigrator.Runner.Initialization
Assembly: FluentMigrator.Runner.Core.dll
Syntax
public interface IAssemblyLoadEngine
Methods
| Edit this page View SourceTryLoad(string, ICollection<Exception>, out Assembly)
Try loading an assembly with the given name
Declaration
bool TryLoad(string name, ICollection<Exception> exceptions, out Assembly assembly)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The assembly name |
| ICollection<Exception> | exceptions | The collected exceptions |
| Assembly | assembly | The loaded assembly |
Returns
| Type | Description |
|---|---|
| bool |
|