1 instantiation of ArgumentInfo
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
535return new ArgumentInfo(type, def, args.ToArray(), map);
20 references to ArgumentInfo
Microsoft.ML.Core (20)
CommandLine\CmdParser.cs (20)
250var info = GetArgumentInfo(destinationType, null); 265var info = GetArgumentInfo(destinationType, null); 294var info = GetArgumentInfo(destination.GetType(), destination); 347var info = GetArgumentInfo(t, defaults); 366var info = GetArgumentInfo(t, defaults); 373var info = GetArgumentInfo(values.GetType(), null); 416var info = GetArgumentInfo(type, defaults); 461private static ArgumentInfo GetArgumentInfo(Type type, object defaults) 559private bool ParseArgumentList(ArgumentInfo info, string[] strs, object destination, ArgValue[] values) 707private bool TryGetOptionValue(ArgumentInfo info, string str, out Argument arg, out string option, out string tag, out string value) 755private bool Parse(ArgumentInfo info, string[] strs, object destination) 773private static string GetSettingsCore(IHostEnvironment env, ArgumentInfo info, object values, SettingsFlags flags) 797private static void AppendCustomItem(IHostEnvironment env, ArgumentInfo info, object values, SettingsFlags flags, StringBuilder sb) 827private IEnumerable<KeyValuePair<string, string>> GetSettingPairsCore(IHostEnvironment env, ArgumentInfo info, object values, SettingsFlags flags) 854private string GetUsageString(IHostEnvironment env, ArgumentInfo info, bool showRsp = true, int? columns = null) 950private ArgumentHelpStrings[] GetAllHelpStrings(IHostEnvironment env, ArgumentInfo info, bool showRsp) 1186private readonly ArgumentInfo _info; 1188private ArgInfo(ArgumentInfo info, Arg[] args) 1257ArgumentInfo argumentInfo = GetArgumentInfo(type, defaults); 1416private readonly ArgumentInfo _infoCustom;