1 write to ArgumentType
Microsoft.ML.Core (1)
ComponentModel\ComponentCatalog.cs (1)
433ArgumentType = argumentType;
7 references to ArgumentType
Microsoft.ML.Core (4)
CommandLine\CmdParser.cs (1)
660var 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);
Microsoft.ML.Data (1)
EntryPoints\InputBuilder.cs (1)
561var inputBuilder = new InputBuilder(ectx, component.ArgumentType, catalog);
Microsoft.ML.EntryPoints (2)
JsonUtils\JsonManifestUtils.cs (2)
110result[FieldNames.Settings] = BuildInputManifest(ectx, componentInfo.ArgumentType, catalog); 467ectx.Assert(componentInfo.ArgumentType == type);