| 12345678910111213141516171819202122232425 |
- using Abp.Configuration;
- using Castle.DynamicProxy;
- namespace Abp.Dependency
- {
- /// <summary>
- /// This class is used to pass configuration/options while registering classes in conventional way.
- /// </summary>
- public class ConventionalRegistrationConfig : DictionaryBasedConfig
- {
- /// <summary>
- /// Install all <see cref="IInterceptor"/> implementations automatically or not.
- /// Default: true.
- /// </summary>
- public bool InstallInstallers { get; set; }
- /// <summary>
- /// Creates a new <see cref="ConventionalRegistrationConfig"/> object.
- /// </summary>
- public ConventionalRegistrationConfig()
- {
- InstallInstallers = true;
- }
- }
- }
|