RuntimeConfigurationSetDependencyInjectionInfo Method |
Sets the dependency information to use by the runtime. It will rebuild the internal DI store with the information provided.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public static void SetDependencyInjectionInfo(
IEnumerable<Assembly> assembliesWithInjectables,
IEnumerable<string> namespaceFilterFragments
)
Public Shared Sub SetDependencyInjectionInfo (
assembliesWithInjectables As IEnumerable(Of Assembly),
namespaceFilterFragments As IEnumerable(Of String)
)
Parameters
- assembliesWithInjectables
- Type: System.Collections.GenericIEnumerableAssembly
The assemblies to examine for types decorated with DependencyInjectionInfo attributes. - namespaceFilterFragments
- Type: System.Collections.GenericIEnumerableString
The namespace fragments to filter target types with. Can be null, in which case all target types specified in
the found DependencyInjectionInfo attributes are used.
See Also