3 writes to _conversionResult
System.CommandLine (3)
Parsing\ArgumentResult.cs (3)
54
return
_conversionResult
= ValidateAndConvert(useValidators: true);
62
(
_conversionResult
??= ValidateAndConvert(useValidators: false))
148
_conversionResult
= ArgumentConversionResult.Failure(this, errorMessage, ArgumentConversionResultType.Failed);
8 references to _conversionResult
System.CommandLine (8)
Parsing\ArgumentResult.cs (8)
37
if (
_conversionResult
is not null)
51
return
_conversionResult
;
172
if (
_conversionResult
is not null)
174
return
_conversionResult
;
185
if (
_conversionResult
is not null)
187
return
_conversionResult
;
206
if (
_conversionResult
is not null)
208
return
_conversionResult
;