Table of Contents

Class CheckerOptions

Namespace
OneImlx.Terminal.Configuration.Options
Assembly
OneImlx.Terminal.dll

The command, argument, and option checker configuration options.

public sealed class CheckerOptions
Inheritance
CheckerOptions
Inherited Members

Remarks

The checker options are not filters. The command execution is blocked if any check fails.

Properties

AllowObsolete

Determines whether the checker allows a command to run with an obsolete argument or an option.

public bool? AllowObsolete { get; set; }

Property Value

bool?

Remarks

The obsolete check is done at runtime only if a user or an application attempts to run the command and passes an obsolete argument or an option.

StrictValueType

Determines whether the checker checks an option value type. If this option is enabled, the checker will try to map an option value to its corresponding .NET value type. If the mapping fails, the command will not run.

public bool? StrictValueType { get; set; }

Property Value

bool?