CommandLineApplication.Argument Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Argument(String, String, Boolean) | |
| Argument(String, String, Action<CommandArgument>, Boolean) |
Argument(String, String, Boolean)
public Microsoft.Extensions.CommandLineUtils.CommandArgument Argument (string name, string description, bool multipleValues = false);
member this.Argument : string * string * bool -> Microsoft.Extensions.CommandLineUtils.CommandArgument
Public Function Argument (name As String, description As String, Optional multipleValues As Boolean = false) As CommandArgument
Parameters
- name
- String
- description
- String
- multipleValues
- Boolean
Returns
Applies to
Argument(String, String, Action<CommandArgument>, Boolean)
public Microsoft.Extensions.CommandLineUtils.CommandArgument Argument (string name, string description, Action<Microsoft.Extensions.CommandLineUtils.CommandArgument> configuration, bool multipleValues = false);
member this.Argument : string * string * Action<Microsoft.Extensions.CommandLineUtils.CommandArgument> * bool -> Microsoft.Extensions.CommandLineUtils.CommandArgument
Public Function Argument (name As String, description As String, configuration As Action(Of CommandArgument), Optional multipleValues As Boolean = false) As CommandArgument
Parameters
- name
- String
- description
- String
- configuration
- Action<CommandArgument>
- multipleValues
- Boolean