-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot parse boolean options #238
Comments
Just a thought, but maybe there should be an extension mechanism for custom type converters. Something along the lines of a custom class that implements a given interface // namespace CommandLine
interface IArgumentConverter<T>
{
T ConvertArgument(string argument);
} // custom namespace
class BooleanConverter : IArgumentConverter<bool>
{
bool ConvertArgument(string argument)
{
return bool.Parse(argument);
}
} Then let us inject the type converter using either the var parser = new Parser(
parserSettings =>
{
// TypeConverters : IDictionary<Type, IArgumentConverter>
parserSettings.TypeConverters[typeof(bool)] = new BooleanConverter();
}); [Option('t', "trusted", Default = true, ..., TypeConverter = typeof(BooleanConverter))]
public bool IntegratedSecurity { get; set; } |
@StevenLiekens, this is covered by a variety of issues. Please check! :) As in #213, no enhancemente will be added until stable is reached. |
Okay but what about the original question? I still can't parse arguments as boolean. |
More references: #115 and #133 for example. The problem is that the parser has its own logic of parsing booleans directly grasped from Having: class Options {
[Option('v')]
public bool Verbose { get; set; }
} For the moment you can't explictely set
But you can enable it explitely:
In fact this kind of options are internally treated as Anyway it's possible that after 2.0 reaches |
Oh, I get it now. :) Thanks. |
Perfect! :) |
The original solution didn't work because of the way the command line parser parses the boolean switches, see gsscoder/commandline#238
Version 2.0.261-beta
My option looks like this
No matter what I try, the parser always sets
ÌntegratedSecurity
to its default valuetrue
.Even if I remove the part
Default = true
, I still get valuetrue
.Is this a type conversion bug?
The text was updated successfully, but these errors were encountered: