Class AssemblyCollection
Implements
Inherited Members
Namespace: FluentMigrator.Infrastructure
Assembly: FluentMigrator.Abstractions.dll
Syntax
public class AssemblyCollection : IAssemblyCollection
  Constructors
AssemblyCollection(IEnumerable<Assembly>)
Declaration
public AssemblyCollection(IEnumerable<Assembly> assemblies)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IEnumerable<Assembly> | assemblies | 
Properties
Assemblies
The Assemblies contained in this collection
Declaration
public Assembly[] Assemblies { get; }
  Property Value
| Type | Description | 
|---|---|
| Assembly[] | 
Methods
GetExportedTypes()
The result of this method is equivalent to calling GetExportedTypes on each Assembly in Assemblies.
Declaration
public Type[] GetExportedTypes()
  Returns
| Type | Description | 
|---|---|
| Type[] | 
GetManifestResourceNames()
Gets a array of resources defined in each of the assemblies that are contained in this collection, plus which assembly it is defined in.
Declaration
public ManifestResourceNameWithAssembly[] GetManifestResourceNames()
  Returns
| Type | Description | 
|---|---|
| ManifestResourceNameWithAssembly[] | An array of value pairs of resource name plus assembly.  |