Aperea.Infrastructure.IoC.WebApiControllerRegistrationConvention.Process C# (CSharp) Метод

Process() приватный Метод

private Process ( Type type, IProfileRegistry registry ) : void
type System.Type
registry IProfileRegistry
Результат void
        private void Process(Type type, IProfileRegistry registry)
        {
            if (!type.IsAbstract && typeof (IHttpController).IsAssignableFrom(type))
            {
                registry.For(type).Use(type);
            }
        }
WebApiControllerRegistrationConvention