Lean
$LEAN_TAG$
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
h
i
l
m
n
o
p
q
r
s
t
w
Functions
Enumerations
a
b
c
d
f
h
i
l
m
n
o
p
q
r
s
t
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Γ
Δ
Θ
ρ
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Γ
Δ
Θ
ρ
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
a
b
c
d
e
f
i
l
m
n
o
q
r
s
t
u
Files
File List
•
All
Classes
Namespaces
Functions
Variables
Enumerations
Enumerator
Properties
Events
Pages
CommandLineOption.cs
1
using
McMaster.Extensions.CommandLineUtils;
2
3
namespace
QuantConnect.Configuration
4
{
5
/// <summary>
6
/// Auxiliary class to keep information about a specific command line option
7
/// </summary>
8
public
class
CommandLineOption
9
{
10
/// <summary>
11
/// Command line option type
12
/// </summary>
13
public
CommandOptionType
Type
{
get
; }
14
15
/// <summary>
16
/// Command line option description
17
/// </summary>
18
public
string
Description
{
get
; }
19
20
/// <summary>
21
/// Command line option name
22
/// </summary>
23
public
string
Name
{
get
; }
24
25
/// <summary>
26
/// Command line option contructor
27
/// </summary>
28
public
CommandLineOption
(
string
name, CommandOptionType type,
string
description =
""
)
29
{
30
Type
= type;
31
Description
= description;
32
Name
= name;
33
}
34
}
35
}
Configuration
CommandLineOption.cs
Generated by
1.8.17