1 write to ArgumentType
Microsoft.ML.Core (1)
ComponentModel\ComponentCatalog.cs (1)
433ArgumentType = argumentType;
4 references to ArgumentType
Microsoft.ML.Core (4)
CommandLine\CmdParser.cs (1)
659var activator = Activator.CreateInstance(component.ArgumentType);
ComponentModel\ComponentCatalog.cs (2)
854component = _components.FirstOrDefault(x => x.ArgumentType == argumentType); 865component = _components.FirstOrDefault(x => x.InterfaceType == interfaceType && x.ArgumentType == argumentType);
Data\ServerChannel.cs (1)
185IServerFactory factory = (IServerFactory)Activator.CreateInstance(component.ArgumentType);