1 instantiation of ComponentInfo
Microsoft.ML.Core (1)
ComponentModel\ComponentCatalog.cs (1)
622var info = new ComponentInfo(faceType, faceAttr.Kind, nestedType, attr);
16 references to ComponentInfo
Microsoft.ML.Core (16)
CommandLine\CmdParser.cs (1)
653ComponentCatalog.ComponentInfo component;
ComponentModel\ComponentCatalog.cs (14)
83_componentMap = new Dictionary<string, ComponentInfo>(); 84_components = new List<ComponentInfo>(); 453private readonly List<ComponentInfo> _components; 454private readonly Dictionary<string, ComponentInfo> _componentMap; 622var info = new ComponentInfo(faceType, faceAttr.Kind, nestedType, attr); 839internal bool TryFindComponent(string kind, string alias, out ComponentInfo component) 850internal bool TryFindComponent(Type argumentType, out ComponentInfo component) 859internal bool TryFindComponent(Type interfaceType, Type argumentType, out ComponentInfo component) 870internal bool TryFindComponent(Type interfaceType, string alias, out ComponentInfo component) 880/// Akin to <see cref="TryFindComponent(Type, string, out ComponentInfo)"/>, except if the regular (case sensitive) comparison fails, it will 884internal bool TryFindComponentCaseInsensitive(Type interfaceType, string alias, out ComponentInfo component) 916internal IEnumerable<ComponentInfo> GetAllComponents(string kind) 927internal IEnumerable<ComponentInfo> GetAllComponents(Type interfaceType) 948ComponentInfo component;
Data\ServerChannel.cs (1)
182ComponentCatalog.ComponentInfo component;