Inferables.Internal.BindingRegistry.GetLoaderForType C# (CSharp) Method

GetLoaderForType() public method

public GetLoaderForType ( Type baseType, bool isExplicitType, string name ) : IFactoryLoader
baseType System.Type
isExplicitType bool
name string
return IFactoryLoader
        public IFactoryLoader GetLoaderForType(Type baseType, bool isExplicitType, string name)
        {
            var map = GetMapForType(baseType, name, isExplicitType, null);
            return GetBindingFromMap(map).Loader;
        }