Click or drag to resize

RuntimeConfiguration.SetDependencyInjectionInfo Method (IEnumerable<Assembly>, IEnumerable<String>)

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.8.0.0 (5.8.21.0111)
Syntax
public static void SetDependencyInjectionInfo(
	IEnumerable<Assembly> assembliesWithInjectables,
	IEnumerable<string> namespaceFilterFragments
)

Parameters

assembliesWithInjectables
Type: System.Collections.Generic.IEnumerable<Assembly>
The assemblies to examine for types decorated with DependencyInjectionInfo attributes.
namespaceFilterFragments
Type: System.Collections.Generic.IEnumerable<String>
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