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