Option Interface

Represents an Option of the command-line options.

C#
public interface Option
Derived

Properties

Name

Gets the name.

ShortName

Gets the short name, if any.

Description

Gets the description.

Schema

Gets the schema of this option.

Properties Detail

Name

Gets the name.

C#
string Name { get; }

Property Value

ShortName

Gets the short name, if any.

C#
char? ShortName { get; }

Property Value

Description

Gets the description.

C#
string Description { get; }

Property Value

Schema

Gets the schema of this option.

C#
OptionSchema Schema { get; }

Property Value