Class CollectionExportFactoryImporter<TService>
Service importing a collection of export factories.
Inheritance
System.Object
CollectionExportFactoryImporter<TService>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Kephas.Composition.ExportFactoryImporters
Assembly: Kephas.Core.dll
Syntax
public class CollectionExportFactoryImporter<TService> : ICollectionExportFactoryImporter<TService>, ICollectionExportFactoryImporter
Type Parameters
Name | Description |
---|---|
TService | Type of the service. |
Constructors
| Improve this Doc View SourceCollectionExportFactoryImporter(IEnumerable<IExportFactory<TService>>)
Initializes a new instance of the CollectionExportFactoryImporter<TService> class.
Declaration
public CollectionExportFactoryImporter(IEnumerable<IExportFactory<TService>> exportFactories)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<IExportFactory<TService>> | exportFactories | The export factories. |
Properties
| Improve this Doc View SourceExportFactories
Gets the export factories.
Declaration
public IEnumerable<IExportFactory<TService>> ExportFactories { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IExportFactory<TService>> | The export factories. |
Explicit Interface Implementations
| Improve this Doc View SourceICollectionExportFactoryImporter.ExportFactories
Gets the export factories.
Declaration
IEnumerable ICollectionExportFactoryImporter.ExportFactories { get; }
Returns
Type | Description |
---|---|
System.Collections.IEnumerable |
Remarks
The invocation of ToList() allows importing of System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IList<T>, and System.Collections.Generic.List<T>.