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 8776f6e commit 3835463Copy full SHA for 3835463
src/System.CommandLine/IIdentifierSymbol.cs
@@ -5,10 +5,21 @@
5
6
namespace System.CommandLine
7
{
8
+ /// <summary>
9
+ /// Defines a symbol with aliases.
10
+ /// </summary>
11
public interface IIdentifierSymbol : ISymbol
12
13
14
+ /// Gets the aliases for the symbol.
15
16
IReadOnlyCollection<string> Aliases { get; }
17
18
19
+ /// Determines whether the alias has already been defined.
20
21
+ /// <param name="alias">The alias to search for.</param>
22
+ /// <returns><c>true</c> if the alias has already been defined; otherwise <c>false</c>.</returns>
23
bool HasAlias(string alias);
24
}
25
0 commit comments