We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeda78a commit 47e3617Copy full SHA for 47e3617
src/System.CommandLine/IOption.cs
@@ -5,12 +5,24 @@
5
6
namespace System.CommandLine
7
{
8
+ /// <summary>
9
+ /// Defines a symbol with an argument.
10
+ /// </summary>
11
public interface IOption : IIdentifierSymbol, IValueDescriptor
12
13
14
+ /// Gets the argument for the option.
15
16
IArgument Argument { get; }
17
18
19
+ /// Gets a value that indicates whether the option is required.
20
21
bool IsRequired { get; }
22
23
24
+ /// Gets a value that indicates whether multiple argument values are allowed.
25
26
bool AllowMultipleArgumentsPerToken { get; }
27
}
28
0 commit comments