Class AssemblyCollection
An assembly collection for multiple assemblies
Implements
Inherited Members
Namespace: FluentMigrator.Infrastructure
Assembly: FluentMigrator.Abstractions.dll
Syntax
[Obsolete]
public class AssemblyCollection : IAssemblyCollection
Constructors
| Edit this page View SourceAssemblyCollection(IEnumerable<Assembly>)
Initializes a new instance of the AssemblyCollection class.
Declaration
public AssemblyCollection(IEnumerable<Assembly> assemblies)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<Assembly> | assemblies | The assemblies for the collection |
Properties
| Edit this page View SourceAssemblies
Gets the Assemblies contained in this collection
Declaration
public Assembly[] Assemblies { get; }
Property Value
Type | Description |
---|---|
Assembly[] |
Methods
| Edit this page View SourceGetExportedTypes()
The result of this method is equivalent to calling GetExportedTypes on each Assembly in Assemblies.
Declaration
public Type[] GetExportedTypes()
Returns
Type | Description |
---|---|
Type[] | The array of exported types |
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. |