1 write to InterfaceType
Microsoft.ML.Core (1)
ComponentModel\ComponentCatalog.cs (1)
434InterfaceType = interfaceType;
4 references to InterfaceType
Microsoft.ML.Core (4)
ComponentModel\ComponentCatalog.cs (4)
865component = _components.FirstOrDefault(x => x.InterfaceType == interfaceType && x.ArgumentType == argumentType); 875component = _components.FirstOrDefault(x => x.InterfaceType == interfaceType && (x.Name == alias || (x.Aliases != null && x.Aliases.Contains(alias)))); 892component = _components.FirstOrDefault(x => x.InterfaceType == interfaceType && (x.Name.ToLowerInvariant() == alias || AnyMatch(alias, x.Aliases))); 930return _components.Where(x => x.InterfaceType == interfaceType).OrderBy(x => x.Name);