1 instantiation of ArgumentInfo
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
536return new ArgumentInfo(type, def, args.ToArray(), map);
20 references to ArgumentInfo
Microsoft.ML.Core (20)
CommandLine\CmdParser.cs (20)
251var info = GetArgumentInfo(destinationType, null); 266var info = GetArgumentInfo(destinationType, null); 295var info = GetArgumentInfo(destination.GetType(), destination); 348var info = GetArgumentInfo(t, defaults); 367var info = GetArgumentInfo(t, defaults); 374var info = GetArgumentInfo(values.GetType(), null); 417var info = GetArgumentInfo(type, defaults); 462private static ArgumentInfo GetArgumentInfo(Type type, object defaults) 560private bool ParseArgumentList(ArgumentInfo info, string[] strs, object destination, ArgValue[] values) 708private bool TryGetOptionValue(ArgumentInfo info, string str, out Argument arg, out string option, out string tag, out string value) 756private bool Parse(ArgumentInfo info, string[] strs, object destination) 774private static string GetSettingsCore(IHostEnvironment env, ArgumentInfo info, object values, SettingsFlags flags) 798private static void AppendCustomItem(IHostEnvironment env, ArgumentInfo info, object values, SettingsFlags flags, StringBuilder sb) 828private IEnumerable<KeyValuePair<string, string>> GetSettingPairsCore(IHostEnvironment env, ArgumentInfo info, object values, SettingsFlags flags) 855private string GetUsageString(IHostEnvironment env, ArgumentInfo info, bool showRsp = true, int? columns = null) 951private ArgumentHelpStrings[] GetAllHelpStrings(IHostEnvironment env, ArgumentInfo info, bool showRsp) 1187private readonly ArgumentInfo _info; 1189private ArgInfo(ArgumentInfo info, Arg[] args) 1258ArgumentInfo argumentInfo = GetArgumentInfo(type, defaults); 1417private readonly ArgumentInfo _infoCustom;