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

GetTypeFactoryBinding() private method

private GetTypeFactoryBinding ( Type type, bool isExplicitType, string name ) : TypeFactoryBinding
type System.Type
isExplicitType bool
name string
return TypeFactoryBinding
        internal TypeFactoryBinding GetTypeFactoryBinding(Type type, bool isExplicitType, string name)
        {
            var map = GetMapForType(type, name, isExplicitType, null);
            var binding = GetBindingFromMap(map);
            return binding;
        }