Inferables.Internal.BindingRegistry.GetLoaderForType C# (CSharp) Méthode

GetLoaderForType() public méthode

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