1 type derived from ArgumentAttribute
Microsoft.ML.Core (1)
CommandLine\DefaultArgumentAttribute.cs (1)
18internal sealed class DefaultArgumentAttribute : ArgumentAttribute
10 references to ArgumentAttribute
Microsoft.ML.Core (10)
CommandLine\CmdParser.cs (6)
473ArgumentAttribute attr = GetAttribute(field); 539private static ArgumentAttribute GetAttribute(FieldInfo field) 541var argumentAttribute = field.GetCustomAttribute<ArgumentAttribute>(false); 542if (argumentAttribute?.Visibility == ArgumentAttribute.VisibilityType.EntryPointsOnly) 1420public Argument(int index, string name, string[] nicks, object defaults, ArgumentAttribute attr, FieldInfo field)
EntryPoints\EntryPointUtils.cs (4)
58var attr = fieldInfo.GetCustomAttributes(typeof(ArgumentAttribute), false).FirstOrDefault() 59as ArgumentAttribute; 60if (attr == null || attr.Visibility == ArgumentAttribute.VisibilityType.CmdLineOnly)