1 write to Field
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
1430Field = field;
15 references to Field
Microsoft.ML.Core (15)
CommandLine\CmdParser.cs (15)
656arg.Field.SetValue(destination, null); 658_host.ComponentCatalog.TryFindComponentCaseInsensitive(arg.Field.FieldType, value, out component)) 667arg.Field.SetValue(destination, activator); 1221public FieldInfo Field { get { return _arg.Field; } } 1512if (IsCollection && Field.GetValue(destination) == null) 1513Field.SetValue(destination, Array.CreateInstance(ItemType, 0)); 1553Field.SetValue(destination, factory); 1600Field.SetValue(destination, arr); 1631Field.SetValue(destination, arr); 1642Field.SetValue(destination, res); 1649Field.SetValue(destination, res); 1715Field.SetValue(destination, newValue); 1722return Field.GetValue(source); 2265get { return IsComponentFactory && !Field.FieldType.IsArray; } 2270get { return IsComponentFactory && Field.FieldType.IsArray; }