Option<T> Constructors
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
| Option<T>(String, String) |
Initializes a new instance of the IdentifierSymbol class. |
| Option<T>(String, String[]) |
Initializes a new instance of the Option class. |
| Option<T>(String[], String) |
Initializes a new instance of the Option<T> class. |
| Option<T>(String, Func<T>, String) |
Initializes a new instance of the Option<T> class. |
| Option<T>(String[], Func<T>, String) |
Initializes a new instance of the Option<T> class. |
| Option<T>(String, ParseArgument<T>, Boolean, String) |
Initializes a new instance of the Option<T> class. |
| Option<T>(String[], ParseArgument<T>, Boolean, String) |
Initializes a new instance of the Option<T> class. |
Option<T>(String, String)
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the IdentifierSymbol class.
public Option(string name, string? description = default);
new System.CommandLine.Option<'T> : string * string -> System.CommandLine.Option<'T>
Public Sub New (name As String, Optional description As String = Nothing)
Parameters
- name
- String
The name of the symbol.
- description
- String
The description of the symbol, which is displayed in command line help.
Applies to
Option<T>(String, String[])
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the Option class.
public:
Option(System::String ^ name, ... cli::array <System::String ^> ^ aliases);
public Option(string name, params string[] aliases);
new System.CommandLine.Option<'T> : string * string[] -> System.CommandLine.Option<'T>
Public Sub New (name As String, ParamArray aliases As String())
Parameters
- name
- String
The name of the option. This is used during parsing and is displayed in help.
- aliases
- String[]
Optional aliases by which the option can be specified on the command line.
Applies to
Option<T>(String[], String)
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the Option<T> class.
public Option(string[] aliases, string? description = default);
new System.CommandLine.Option<'T> : string[] * string -> System.CommandLine.Option<'T>
Public Sub New (aliases As String(), Optional description As String = Nothing)
Parameters
- aliases
- String[]
- description
- String
Applies to
Option<T>(String, Func<T>, String)
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the Option<T> class.
public Option(string name, Func<T> getDefaultValue, string? description = default);
new System.CommandLine.Option<'T> : string * Func<'T> * string -> System.CommandLine.Option<'T>
Public Sub New (name As String, getDefaultValue As Func(Of T), Optional description As String = Nothing)
Parameters
- name
- String
- getDefaultValue
- Func<T>
- description
- String
Applies to
Option<T>(String[], Func<T>, String)
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the Option<T> class.
public Option(string[] aliases, Func<T> getDefaultValue, string? description = default);
new System.CommandLine.Option<'T> : string[] * Func<'T> * string -> System.CommandLine.Option<'T>
Public Sub New (aliases As String(), getDefaultValue As Func(Of T), Optional description As String = Nothing)
Parameters
- aliases
- String[]
- getDefaultValue
- Func<T>
- description
- String
Applies to
Option<T>(String, ParseArgument<T>, Boolean, String)
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the Option<T> class.
public Option(string name, System.CommandLine.Parsing.ParseArgument<T> parseArgument, bool isDefault = false, string? description = default);
new System.CommandLine.Option<'T> : string * System.CommandLine.Parsing.ParseArgument<'T> * bool * string -> System.CommandLine.Option<'T>
Public Sub New (name As String, parseArgument As ParseArgument(Of T), Optional isDefault As Boolean = false, Optional description As String = Nothing)
Parameters
- name
- String
- parseArgument
- ParseArgument<T>
- isDefault
- Boolean
- description
- String
Applies to
Option<T>(String[], ParseArgument<T>, Boolean, String)
- Source:
- Option%7BT%7D.cs
Initializes a new instance of the Option<T> class.
public Option(string[] aliases, System.CommandLine.Parsing.ParseArgument<T> parseArgument, bool isDefault = false, string? description = default);
new System.CommandLine.Option<'T> : string[] * System.CommandLine.Parsing.ParseArgument<'T> * bool * string -> System.CommandLine.Option<'T>
Public Sub New (aliases As String(), parseArgument As ParseArgument(Of T), Optional isDefault As Boolean = false, Optional description As String = Nothing)
Parameters
- aliases
- String[]
- parseArgument
- ParseArgument<T>
- isDefault
- Boolean
- description
- String