Click or drag to resize
DependencyInjectionDiscoveryInformation Class
Static class which is used to set discovery information for dependency injection info for the situation when there's no config file available in the application. Set the variables of this static class as soon as possible at the startup of your application so the initialization of this class, if required, is ran before an entity is instantiated so the DependencyInjectionInfoProvider is initialized after this class is initialized by your application.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.ORMSupportClassesDependencyInjectionDiscoveryInformation

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 class DependencyInjectionDiscoveryInformation

The DependencyInjectionDiscoveryInformation type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberConfigInformation
Set this object to an instance of DependencyInjectionConfigInformation with the assemblies / namespace fragments as if it was loaded from the config file. If you need information read from the config file, leave this field to null / Nothing (default) so it will signal the DependencyInjectionInfoProvider to read the config file for additional information instead.
Public fieldStatic memberPerformAutoDiscoveryDependencyInjectionInformation
Flag to signal the DependencyInjectionProvider that the auto discovery of dependency injection info in the assemblies of the application should be performed (true) or not (false). Default: false
Top
Remarks
Use this class only if you don't want to provide dependencyinjection information in the config file of your application.
See Also