Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public static void SetDependencyInjectionInfo(
	IEnumerable<Assembly> assembliesWithInjectables,
	IEnumerable<string> namespaceFilterFragments
)

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