Edit

Share via


ParseResult.GetValue Method

Definition

Overloads

GetValue<T>(Argument<T>)

Source:
ParseResult.cs
public:
generic <typename T>
 T GetValue(System::CommandLine::Argument<T> ^ argument);
public T? GetValue<T>(System.CommandLine.Argument<T> argument);
member this.GetValue : System.CommandLine.Argument<'T> -> 'T
Public Function GetValue(Of T) (argument As Argument(Of T)) As T

Type Parameters

T

Parameters

argument
Argument<T>

Returns

T

Applies to

GetValue<T>(Option<T>)

Source:
ParseResult.cs
public:
generic <typename T>
 T GetValue(System::CommandLine::Option<T> ^ option);
public T? GetValue<T>(System.CommandLine.Option<T> option);
member this.GetValue : System.CommandLine.Option<'T> -> 'T
Public Function GetValue(Of T) (option As Option(Of T)) As T

Type Parameters

T

Parameters

option
Option<T>

Returns

T

Applies to

GetValue<T>(String)

Source:
ParseResult.cs
public:
generic <typename T>
 T GetValue(System::String ^ name);
public T? GetValue<T>(string name);
member this.GetValue : string -> 'T
Public Function GetValue(Of T) (name As String) As T

Type Parameters

T

Parameters

name
String

Returns

T

Applies to