-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathCommandLine.xml
More file actions
1390 lines (1390 loc) · 76 KB
/
CommandLine.xml
File metadata and controls
1390 lines (1390 loc) · 76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>CommandLine</name>
</assembly>
<members>
<member name="T:CommandLine.BaseOptionAttribute">
<summary>
Provides base properties for creating an attribute, used to define rules for command line parsing.
</summary>
</member>
<member name="M:CommandLine.BaseOptionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.BaseOptionAttribute"/> class.
</summary>
</member>
<member name="M:CommandLine.BaseOptionAttribute.#ctor(System.Char,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.BaseOptionAttribute"/> class.
Validating <paramref name="shortName"/> and <paramref name="longName"/>.
</summary>
<param name="shortName">Short name of the option.</param>
<param name="longName">Long name of the option.</param>
</member>
<member name="M:CommandLine.BaseOptionAttribute.#ctor(System.Nullable{System.Char},System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.BaseOptionAttribute"/> class. Validating <paramref name="shortName"/>
and <paramref name="longName"/>. This constructor accepts a <see cref="T:System.Nullable`1"/> as short name.
</summary>
<param name="shortName">Short name of the option.</param>
<param name="longName">Long name of the option.</param>
</member>
<member name="P:CommandLine.BaseOptionAttribute.ShortName">
<summary>
Gets a short name of this command line option. You can use only one character.
</summary>
</member>
<member name="P:CommandLine.BaseOptionAttribute.LongName">
<summary>
Gets long name of this command line option. This name is usually a single english word.
</summary>
</member>
<member name="P:CommandLine.BaseOptionAttribute.MutuallyExclusiveSet">
<summary>
Gets or sets the option's mutually exclusive set.
</summary>
</member>
<member name="P:CommandLine.BaseOptionAttribute.Required">
<summary>
Gets or sets a value indicating whether a command line option is required.
</summary>
</member>
<member name="P:CommandLine.BaseOptionAttribute.DefaultValue">
<summary>
Gets or sets mapped property default value.
</summary>
</member>
<member name="P:CommandLine.BaseOptionAttribute.MetaValue">
<summary>
Gets or sets mapped property meta value.
</summary>
</member>
<member name="P:CommandLine.BaseOptionAttribute.HelpText">
<summary>
Gets or sets a short description of this command line option. Usually a sentence summary.
</summary>
</member>
<member name="T:CommandLine.OptionAttribute">
<summary>
Models an option specification.
</summary>
</member>
<member name="M:CommandLine.OptionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class.
The default long name will be inferred from target property.
</summary>
</member>
<member name="M:CommandLine.OptionAttribute.#ctor(System.Char)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class.
</summary>
<param name="shortName">The short name of the option..</param>
</member>
<member name="M:CommandLine.OptionAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class.
</summary>
<param name="longName">The long name of the option.</param>
</member>
<member name="M:CommandLine.OptionAttribute.#ctor(System.Char,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class.
</summary>
<param name="shortName">The short name of the option.</param>
<param name="longName">The long name of the option or null if not used.</param>
</member>
<member name="M:CommandLine.OptionAttribute.CreateOptionInfo">
<summary>
Helper factory method for testing purpose.
</summary>
<returns>An <see cref="T:CommandLine.Parsing.OptionInfo"/> instance.</returns>
</member>
<member name="T:CommandLine.OptionArrayAttribute">
<summary>
Models an option that can accept multiple values as separated arguments.
</summary>
</member>
<member name="M:CommandLine.OptionArrayAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionArrayAttribute"/> class.
The default long name will be inferred from target property.
</summary>
</member>
<member name="M:CommandLine.OptionArrayAttribute.#ctor(System.Char)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionArrayAttribute"/> class.
</summary>
<param name="shortName">The short name of the option.</param>
</member>
<member name="M:CommandLine.OptionArrayAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionArrayAttribute"/> class.
</summary>
<param name="longName">The long name of the option.</param>
</member>
<member name="M:CommandLine.OptionArrayAttribute.#ctor(System.Char,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionArrayAttribute"/> class.
</summary>
<param name="shortName">The short name of the option.</param>
<param name="longName">The long name of the option or null if not used.</param>
</member>
<member name="T:CommandLine.HelpOptionAttribute">
<summary>
Indicates the instance method that must be invoked when it becomes necessary show your help screen.
The method signature is an instance method with no parameters and <see cref="T:System.String"/>
return value.
</summary>
</member>
<member name="M:CommandLine.HelpOptionAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class.
Although it is possible, it is strongly discouraged redefine the long name for this option
not to disorient your users. It is also recommended not to define a short one.
</summary>
</member>
<member name="M:CommandLine.HelpOptionAttribute.#ctor(System.Char)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class
with the specified short name. Use parameter less constructor instead.
</summary>
<param name="shortName">The short name of the option.</param>
<remarks>
It's highly not recommended change the way users invoke help. It may create confusion.
</remarks>
</member>
<member name="M:CommandLine.HelpOptionAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class
with the specified long name. Use parameter less constructor instead.
</summary>
<param name="longName">The long name of the option or null if not used.</param>
<remarks>
It's highly not recommended change the way users invoke help. It may create confusion.
</remarks>
</member>
<member name="M:CommandLine.HelpOptionAttribute.#ctor(System.Char,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class.
Allows you to define short and long option names.
</summary>
<param name="shortName">The short name of the option.</param>
<param name="longName">The long name of the option or null if not used.</param>
<remarks>
It's highly not recommended change the way users invoke help. It may create confusion.
</remarks>
</member>
<member name="P:CommandLine.HelpOptionAttribute.Required">
<summary>
Returns always false for this kind of option.
This behaviour can't be changed by design; if you try set <see cref="P:CommandLine.HelpOptionAttribute.Required"/>
an <see cref="T:System.InvalidOperationException"/> will be thrown.
</summary>
</member>
<member name="T:CommandLine.OptionListAttribute">
<summary>
Models an option that can accept multiple values.
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface
of <see cref="T:System.String"/> instances.
</summary>
</member>
<member name="M:CommandLine.OptionListAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
The default long name will be inferred from target property.
</summary>
</member>
<member name="M:CommandLine.OptionListAttribute.#ctor(System.Char)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
</summary>
<param name="shortName">The short name of the option.</param>
</member>
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
</summary>
<param name="longName">The long name of the option or null if not used.</param>
</member>
<member name="M:CommandLine.OptionListAttribute.#ctor(System.Char,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
</summary>
<param name="shortName">The short name of the option.</param>
<param name="longName">The long name of the option or null if not used.</param>
</member>
<member name="M:CommandLine.OptionListAttribute.#ctor(System.Char,System.String,System.Char)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
</summary>
<param name="shortName">The short name of the option or null if not used.</param>
<param name="longName">The long name of the option or null if not used.</param>
<param name="separator">Values separator character.</param>
</member>
<member name="P:CommandLine.OptionListAttribute.Separator">
<summary>
Gets or sets the values separator character.
</summary>
</member>
<member name="T:CommandLine.ParserStateAttribute">
<summary>
Indicates that the property can receive an instance of type <see cref="T:CommandLine.IParserState"/>.
</summary>
</member>
<member name="T:CommandLine.ValueListAttribute">
<summary>
Models a list of command line arguments that are not options.
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface
of <see cref="T:System.String"/> instances.
</summary>
<remarks>To map individual values use instead <see cref="T:CommandLine.ValueOptionAttribute"/>.</remarks>
</member>
<member name="M:CommandLine.ValueListAttribute.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.ValueListAttribute"/> class.
</summary>
<param name="concreteType">A type that implements <see cref="T:System.Collections.Generic.IList`1"/>.</param>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="concreteType"/> is null.</exception>
</member>
<member name="P:CommandLine.ValueListAttribute.MaximumElements">
<summary>
Gets or sets the maximum element allow for the list managed by <see cref="T:CommandLine.ValueListAttribute"/> type.
If lesser than 0, no upper bound is fixed.
If equal to 0, no elements are allowed.
</summary>
</member>
<member name="P:CommandLine.ValueListAttribute.ConcreteType">
<summary>
Gets the concrete type specified during initialization.
</summary>
</member>
<member name="T:CommandLine.ValueOptionAttribute">
<summary>
Maps a single unnamed option to the target property. Values will be mapped in order of Index.
This attribute takes precedence over <see cref="T:CommandLine.ValueListAttribute"/> with which
can coexist.
</summary>
<remarks>It can handle only scalar values. Do not apply to arrays or lists.</remarks>
</member>
<member name="M:CommandLine.ValueOptionAttribute.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.ValueOptionAttribute"/> class.
</summary>
<param name="index">The _index of the option.</param>
</member>
<member name="P:CommandLine.ValueOptionAttribute.Index">
<summary>
Gets the position this option has on the command line.
</summary>
</member>
<member name="T:CommandLine.Extensions.CharExtensions">
<summary>
Utility extension methods for System.Char.
</summary>
</member>
<member name="T:CommandLine.Parsing.PropertyWriter">
<summary>
Encapsulates property writing primitives.
</summary>
</member>
<member name="T:CommandLine.Extensions.StringExtensions">
<summary>
Utility extension methods for System.String.
</summary>
</member>
<member name="P:CommandLine.Infrastructure.ReflectionHelper.AssemblyFromWhichToPullInformation">
<summary>
Gets or sets the assembly from which to pull information. Setter provided for testing purpose.
</summary>
</member>
<member name="T:CommandLine.Parsing.TargetCapabilitiesExtensions">
<summary>
Utility extension methods for query target capabilities.
</summary>
</member>
<member name="T:CommandLine.Parsing.ValueMapper">
<summary>
Maps unnamed options to property using <see cref="T:CommandLine.ValueOptionAttribute"/> and <see cref="T:CommandLine.ValueListAttribute"/>.
</summary>
</member>
<member name="M:CommandLine.Parsing.ArgumentParser.InternalWrapperOfGetNextInputValues(CommandLine.Parsing.IArgumentEnumerator)">
<summary>
Helper method for testing purpose.
</summary>
<param name="ae">An argument enumerator instance.</param>
<returns>The next input value.</returns>
</member>
<member name="M:CommandLine.Parsing.OptionInfo.#ctor(System.Nullable{System.Char},System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Parsing.OptionInfo"/> class. Used for unit testing purpose.
</summary>
<param name="shortName">Option short name.</param>
<param name="longName">Option long name.</param>
</member>
<member name="M:CommandLine.Parsing.OptionMap.#ctor(System.Int32,CommandLine.ParserSettings)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Parsing.OptionMap"/> class.
It is internal rather than private for unit testing purpose.
</summary>
<param name="capacity">Initial internal capacity.</param>
<param name="settings">Parser settings instance.</param>
</member>
<member name="T:CommandLine.Text.HelpText">
<summary>
Provides means to format an help screen.
You can assign it in place of a <see cref="T:System.String"/> instance.
</summary>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class.
</summary>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(CommandLine.Text.BaseSentenceBuilder)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying the sentence builder.
</summary>
<param name="sentenceBuilder">
A <see cref="T:CommandLine.Text.BaseSentenceBuilder"/> instance.
</param>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying heading string.
</summary>
<param name="heading">An heading string or an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="heading"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(CommandLine.Text.BaseSentenceBuilder,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying the sentence builder and heading string.
</summary>
<param name="sentenceBuilder">A <see cref="T:CommandLine.Text.BaseSentenceBuilder"/> instance.</param>
<param name="heading">A string with heading or an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying heading and copyright strings.
</summary>
<param name="heading">A string with heading or an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
<param name="copyright">A string with copyright or an instance of <see cref="T:CommandLine.Text.CopyrightInfo"/>.</param>
<exception cref="T:System.ArgumentException">Thrown when one or more parameters <paramref name="heading"/> are null or empty strings.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(CommandLine.Text.BaseSentenceBuilder,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying heading and copyright strings.
</summary>
<param name="sentenceBuilder">A <see cref="T:CommandLine.Text.BaseSentenceBuilder"/> instance.</param>
<param name="heading">A string with heading or an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
<param name="copyright">A string with copyright or an instance of <see cref="T:CommandLine.Text.CopyrightInfo"/>.</param>
<exception cref="T:System.ArgumentException">Thrown when one or more parameters <paramref name="heading"/> are null or empty strings.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(System.String,System.String,System.Object)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying heading and copyright strings.
</summary>
<param name="heading">A string with heading or an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
<param name="copyright">A string with copyright or an instance of <see cref="T:CommandLine.Text.CopyrightInfo"/>.</param>
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param>
<exception cref="T:System.ArgumentException">Thrown when one or more parameters <paramref name="heading"/> are null or empty strings.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.#ctor(CommandLine.Text.BaseSentenceBuilder,System.String,System.String,System.Object)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
specifying heading and copyright strings.
</summary>
<param name="sentenceBuilder">A <see cref="T:CommandLine.Text.BaseSentenceBuilder"/> instance.</param>
<param name="heading">A string with heading or an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
<param name="copyright">A string with copyright or an instance of <see cref="T:CommandLine.Text.CopyrightInfo"/>.</param>
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param>
<exception cref="T:System.ArgumentException">Thrown when one or more parameters <paramref name="heading"/> are null or empty strings.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.AutoBuild(System.Object)">
<summary>
Creates a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class using common defaults.
</summary>
<returns>
An instance of <see cref="T:CommandLine.Text.HelpText"/> class.
</returns>
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param>
</member>
<member name="M:CommandLine.Text.HelpText.AutoBuild(System.Object,System.Action{CommandLine.Text.HelpText},System.Boolean)">
<summary>
Creates a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class using common defaults.
</summary>
<returns>
An instance of <see cref="T:CommandLine.Text.HelpText"/> class.
</returns>
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param>
<param name="onError">A delegate used to customize the text block for reporting parsing errors.</param>
<param name="verbsIndex">If true the output style is consistent with verb commands (no dashes), otherwise it outputs options.</param>
</member>
<member name="M:CommandLine.Text.HelpText.AutoBuild(System.Object,System.String)">
<summary>
Creates a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class using common defaults,
for verb commands scenario.
</summary>
<returns>
An instance of <see cref="T:CommandLine.Text.HelpText"/> class.
</returns>
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param>
<param name="verb">The verb command invoked.</param>
</member>
<member name="M:CommandLine.Text.HelpText.DefaultParsingErrorsHandler(System.Object,CommandLine.Text.HelpText)">
<summary>
Supplies a default parsing error handler implementation.
</summary>
<param name="options">The instance that collects parsed arguments parsed and associates <see cref="T:CommandLine.ParserStateAttribute"/>
to a property of type <see cref="T:CommandLine.IParserState"/>.</param>
<param name="current">The <see cref="T:CommandLine.Text.HelpText"/> instance.</param>
</member>
<member name="M:CommandLine.Text.HelpText.op_Implicit(CommandLine.Text.HelpText)~System.String">
<summary>
Converts the help instance to a <see cref="T:System.String"/>.
</summary>
<param name="info">This <see cref="T:CommandLine.Text.HelpText"/> instance.</param>
<returns>The <see cref="T:System.String"/> that contains the help screen.</returns>
</member>
<member name="M:CommandLine.Text.HelpText.AddPreOptionsLine(System.String)">
<summary>
Adds a text line after copyright and before options usage strings.
</summary>
<param name="value">A <see cref="T:System.String"/> instance.</param>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.AddPostOptionsLine(System.String)">
<summary>
Adds a text line at the bottom, after options usage string.
</summary>
<param name="value">A <see cref="T:System.String"/> instance.</param>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object)">
<summary>
Adds a text block with options usage string.
</summary>
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String)">
<summary>
Adds a text block with options usage string.
</summary>
<param name="options">The instance that collected command line arguments parsed with the <see cref="T:CommandLine.Parser"/> class.</param>
<param name="requiredWord">The word to use when the option is required.</param>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String,System.Int32)">
<summary>
Adds a text block with options usage string.
</summary>
<param name="options">The instance that collected command line arguments parsed with the <see cref="T:CommandLine.Parser"/> class.</param>
<param name="requiredWord">The word to use when the option is required.</param>
<param name="maximumLength">The maximum length of the help documentation.</param>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HelpText.RenderParsingErrorsText(System.Object,System.Int32)">
<summary>
Builds a string that contains a parsing error message.
</summary>
<param name="options">An options target instance that collects parsed arguments parsed with the <see cref="T:CommandLine.ParserStateAttribute"/>
associated to a property of type <see cref="T:CommandLine.IParserState"/>.</param>
<param name="indent">Number of spaces used to indent text.</param>
<returns>The <see cref="T:System.String"/> that contains the parsing error message.</returns>
</member>
<member name="M:CommandLine.Text.HelpText.ToString">
<summary>
Returns the help screen as a <see cref="T:System.String"/>.
</summary>
<returns>The <see cref="T:System.String"/> that contains the help screen.</returns>
</member>
<member name="M:CommandLine.Text.HelpText.OnFormatOptionHelpText(CommandLine.Text.FormatOptionHelpTextEventArgs)">
<summary>
The OnFormatOptionHelpText method also allows derived classes to handle the event without attaching a delegate.
This is the preferred technique for handling the event in a derived class.
</summary>
<param name="e">Data for the <see cref="E:CommandLine.Text.HelpText.FormatOptionHelpText"/> event.</param>
</member>
<member name="E:CommandLine.Text.HelpText.FormatOptionHelpText">
<summary>
Occurs when an option help text is formatted.
</summary>
</member>
<member name="P:CommandLine.Text.HelpText.Heading">
<summary>
Gets or sets the heading string.
You can directly assign a <see cref="T:CommandLine.Text.HeadingInfo"/> instance.
</summary>
</member>
<member name="P:CommandLine.Text.HelpText.Copyright">
<summary>
Gets or sets the copyright string.
You can directly assign a <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.
</summary>
</member>
<member name="P:CommandLine.Text.HelpText.MaximumDisplayWidth">
<summary>
Gets or sets the maximum width of the display. This determines word wrap when displaying the text.
</summary>
<value>The maximum width of the display.</value>
</member>
<member name="P:CommandLine.Text.HelpText.AddDashesToOption">
<summary>
Gets or sets a value indicating whether the format of options should contain dashes.
It modifies behavior of <see cref="M:CommandLine.Text.HelpText.AddOptions(System.Object)"/> method.
</summary>
</member>
<member name="P:CommandLine.Text.HelpText.AdditionalNewLineAfterOption">
<summary>
Gets or sets a value indicating whether to add an additional line after the description of the option.
</summary>
</member>
<member name="P:CommandLine.Text.HelpText.SentenceBuilder">
<summary>
Gets the <see cref="T:CommandLine.Text.BaseSentenceBuilder"/> instance specified in constructor.
</summary>
</member>
<member name="T:CommandLine.Text.BaseSentenceBuilder">
<summary>
Models an abstract sentence builder.
</summary>
</member>
<member name="M:CommandLine.Text.BaseSentenceBuilder.CreateBuiltIn">
<summary>
Creates the built in sentence builder.
</summary>
<returns>The built in sentence builder.</returns>
</member>
<member name="P:CommandLine.Text.BaseSentenceBuilder.OptionWord">
<summary>
Gets a string containing word 'option'.
</summary>
<value>The word 'option'.</value>
</member>
<member name="P:CommandLine.Text.BaseSentenceBuilder.AndWord">
<summary>
Gets a string containing the word 'and'.
</summary>
<value>The word 'and'.</value>
</member>
<member name="P:CommandLine.Text.BaseSentenceBuilder.RequiredOptionMissingText">
<summary>
Gets a string containing the sentence 'required option missing'.
</summary>
<value>The sentence 'required option missing'.</value>
</member>
<member name="P:CommandLine.Text.BaseSentenceBuilder.ViolatesFormatText">
<summary>
Gets a string containing the sentence 'violates format'.
</summary>
<value>The sentence 'violates format'.</value>
</member>
<member name="P:CommandLine.Text.BaseSentenceBuilder.ViolatesMutualExclusivenessText">
<summary>
Gets a string containing the sentence 'violates mutual exclusiveness'.
</summary>
<value>The sentence 'violates mutual exclusiveness'.</value>
</member>
<member name="P:CommandLine.Text.BaseSentenceBuilder.ErrorsHeadingText">
<summary>
Gets a string containing the error heading text.
</summary>
<value>The error heading text.</value>
</member>
<member name="T:CommandLine.Text.EnglishSentenceBuilder">
<summary>
Models an english sentence builder, currently the default one.
</summary>
</member>
<member name="P:CommandLine.Text.EnglishSentenceBuilder.OptionWord">
<summary>
Gets a string containing word 'option' in english.
</summary>
<value>The word 'option' in english.</value>
</member>
<member name="P:CommandLine.Text.EnglishSentenceBuilder.AndWord">
<summary>
Gets a string containing the word 'and' in english.
</summary>
<value>The word 'and' in english.</value>
</member>
<member name="P:CommandLine.Text.EnglishSentenceBuilder.RequiredOptionMissingText">
<summary>
Gets a string containing the sentence 'required option missing' in english.
</summary>
<value>The sentence 'required option missing' in english.</value>
</member>
<member name="P:CommandLine.Text.EnglishSentenceBuilder.ViolatesFormatText">
<summary>
Gets a string containing the sentence 'violates format' in english.
</summary>
<value>The sentence 'violates format' in english.</value>
</member>
<member name="P:CommandLine.Text.EnglishSentenceBuilder.ViolatesMutualExclusivenessText">
<summary>
Gets a string containing the sentence 'violates mutual exclusiveness' in english.
</summary>
<value>The sentence 'violates mutual exclusiveness' in english.</value>
</member>
<member name="P:CommandLine.Text.EnglishSentenceBuilder.ErrorsHeadingText">
<summary>
Gets a string containing the error heading text in english.
</summary>
<value>The error heading text in english.</value>
</member>
<member name="T:CommandLine.Text.CopyrightInfo">
<summary>
Models the copyright part of an help text.
You can assign it where you assign any <see cref="T:System.String"/> instance.
</summary>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
specifying author and year.
</summary>
<param name="author">The company or person holding the copyright.</param>
<param name="year">The year of coverage of copyright.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32[])">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
specifying author and copyrightYears.
</summary>
<param name="author">The company or person holding the copyright.</param>
<param name="years">The copyrightYears of coverage of copyright.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.Boolean,System.String,System.Int32[])">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
specifying symbol case, author and copyrightYears.
</summary>
<param name="isSymbolUpper">The case of the copyright symbol.</param>
<param name="author">The company or person holding the copyright.</param>
<param name="copyrightYears">The copyrightYears of coverage of copyright.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="copyrightYears"/> is not supplied.</exception>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class.
</summary>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.Reflection.AssemblyCopyrightAttribute)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
with an assembly attribute, this overrides all formatting.
</summary>
<param name="attribute">The attribute which text to use.</param>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.op_Implicit(CommandLine.Text.CopyrightInfo)~System.String">
<summary>
Converts the copyright instance to a <see cref="T:System.String"/>.
</summary>
<param name="info">This <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.</param>
<returns>The <see cref="T:System.String"/> that contains the copyright.</returns>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.ToString">
<summary>
Returns the copyright as a <see cref="T:System.String"/>.
</summary>
<returns>The <see cref="T:System.String"/> that contains the copyright.</returns>
</member>
<member name="M:CommandLine.Text.CopyrightInfo.FormatYears(System.Int32[])">
<summary>
When overridden in a derived class, allows to specify a new algorithm to render copyright copyrightYears
as a <see cref="T:System.String"/> instance.
</summary>
<param name="years">A <see cref="T:System.Int32"/> array of copyrightYears.</param>
<returns>A <see cref="T:System.String"/> instance with copyright copyrightYears.</returns>
</member>
<member name="P:CommandLine.Text.CopyrightInfo.Default">
<summary>
Gets the default copyright information.
Retrieved from <see cref="T:System.Reflection.AssemblyCopyrightAttribute"/>, if it exists,
otherwise it uses <see cref="T:System.Reflection.AssemblyCompanyAttribute"/> as copyright holder with the current year.
If neither exists it throws an <see cref="T:System.InvalidOperationException"/>.
</summary>
</member>
<member name="P:CommandLine.Text.CopyrightInfo.CopyrightWord">
<summary>
Gets a different copyright word when overridden in a derived class.
</summary>
</member>
<member name="T:CommandLine.Text.HeadingInfo">
<summary>
Models the heading part of an help text.
You can assign it where you assign any <see cref="T:System.String"/> instance.
</summary>
</member>
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class
specifying program name.
</summary>
<param name="programName">The name of the program.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class
specifying program name and version.
</summary>
<param name="programName">The name of the program.</param>
<param name="version">The version of the program.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HeadingInfo.op_Implicit(CommandLine.Text.HeadingInfo)~System.String">
<summary>
Converts the heading to a <see cref="T:System.String"/>.
</summary>
<param name="info">This <see cref="T:CommandLine.Text.HeadingInfo"/> instance.</param>
<returns>The <see cref="T:System.String"/> that contains the heading.</returns>
</member>
<member name="M:CommandLine.Text.HeadingInfo.ToString">
<summary>
Returns the heading as a <see cref="T:System.String"/>.
</summary>
<returns>The <see cref="T:System.String"/> that contains the heading.</returns>
</member>
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String,System.IO.TextWriter)">
<summary>
Writes out a string and a new line using the program name specified in the constructor
and <paramref name="message"/> parameter.
</summary>
<param name="message">The <see cref="T:System.String"/> message to write.</param>
<param name="writer">The target <see cref="T:System.IO.TextWriter"/> derived type.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="writer"/> is null.</exception>
</member>
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String)">
<summary>
Writes out a string and a new line using the program name specified in the constructor
and <paramref name="message"/> parameter to standard output stream.
</summary>
<param name="message">The <see cref="T:System.String"/> message to write.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
</member>
<member name="M:CommandLine.Text.HeadingInfo.WriteError(System.String)">
<summary>
Writes out a string and a new line using the program name specified in the constructor
and <paramref name="message"/> parameter to standard error stream.
</summary>
<param name="message">The <see cref="T:System.String"/> message to write.</param>
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
</member>
<member name="P:CommandLine.Text.HeadingInfo.Default">
<summary>
Gets the default heading instance.
The title is retrieved from <see cref="T:System.Reflection.AssemblyTitleAttribute"/>,
or the assembly short name if its not defined.
The version is retrieved from <see cref="T:System.Reflection.AssemblyInformationalVersionAttribute"/>,
or the assembly version if its not defined.
</summary>
</member>
<member name="T:CommandLine.MultilineTextAttribute">
<summary>
Provides base properties for creating an attribute, used to define multiple lines of text.
</summary>
</member>
<member name="M:CommandLine.MultilineTextAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.MultilineTextAttribute"/> class. Used in derived type
using one line of text.
</summary>
<param name="line1">The first line of text.</param>
</member>
<member name="M:CommandLine.MultilineTextAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.MultilineTextAttribute"/> class. Used in type
using two lines of text.
</summary>
<param name="line1">The first line of text.</param>
<param name="line2">The second line of text.</param>
</member>
<member name="M:CommandLine.MultilineTextAttribute.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.MultilineTextAttribute"/> class. Used in type
using three lines of text.
</summary>
<param name="line1">The first line of text.</param>
<param name="line2">The second line of text.</param>
<param name="line3">The third line of text.</param>
</member>
<member name="M:CommandLine.MultilineTextAttribute.#ctor(System.String,System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.MultilineTextAttribute"/> class. Used in type
using four lines of text.
</summary>
<param name="line1">The first line of text.</param>
<param name="line2">The second line of text.</param>
<param name="line3">The third line of text.</param>
<param name="line4">The fourth line of text.</param>
</member>
<member name="M:CommandLine.MultilineTextAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.MultilineTextAttribute"/> class. Used in type
using five lines of text.
</summary>
<param name="line1">The first line of text.</param>
<param name="line2">The second line of text.</param>
<param name="line3">The third line of text.</param>
<param name="line4">The fourth line of text.</param>
<param name="line5">The fifth line of text.</param>
</member>
<member name="M:CommandLine.MultilineTextAttribute.GetLastLineWithText(System.String[])">
<summary>
Returns the last line with text. Preserves blank lines if user intended by skipping a line.
</summary>
<returns>The last index of line of the non-blank line.
</returns>
<param name='value'>The string array to process.</param>
</member>
<member name="P:CommandLine.MultilineTextAttribute.Value">
<summary>
Gets the all non-blank lines as string.
</summary>
<value>A string of all non-blank lines.</value>
</member>
<member name="P:CommandLine.MultilineTextAttribute.Line1">
<summary>
Gets the first line of text.
</summary>
</member>
<member name="P:CommandLine.MultilineTextAttribute.Line2">
<summary>
Gets the second line of text.
</summary>
</member>
<member name="P:CommandLine.MultilineTextAttribute.Line3">
<summary>
Gets third line of text.
</summary>
</member>
<member name="P:CommandLine.MultilineTextAttribute.Line4">
<summary>
Gets the fourth line of text.
</summary>
</member>
<member name="P:CommandLine.MultilineTextAttribute.Line5">
<summary>
Gets the fifth line of text.
</summary>
</member>
<member name="T:CommandLine.AssemblyLicenseAttribute">
<summary>
Models a multiline assembly license text.
</summary>
</member>
<member name="M:CommandLine.AssemblyLicenseAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyLicenseAttribute"/> class
with one line of text.
</summary>
<param name="line1">First line of license text.</param>
</member>
<member name="M:CommandLine.AssemblyLicenseAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyLicenseAttribute"/> class
with two lines of text.
</summary>
<param name="line1">First line of license text.</param>
<param name="line2">Second line of license text.</param>
</member>
<member name="M:CommandLine.AssemblyLicenseAttribute.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyLicenseAttribute"/> class
with three lines of text.
</summary>
<param name="line1">First line of license text.</param>
<param name="line2">Second line of license text.</param>
<param name="line3">Third line of license text.</param>
</member>
<member name="M:CommandLine.AssemblyLicenseAttribute.#ctor(System.String,System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyLicenseAttribute"/> class
with four lines of text.
</summary>
<param name="line1">First line of license text.</param>
<param name="line2">Second line of license text.</param>
<param name="line3">Third line of license text.</param>
<param name="line4">Fourth line of license text.</param>
</member>
<member name="M:CommandLine.AssemblyLicenseAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyLicenseAttribute"/> class
with five lines of text.
</summary>
<param name="line1">First line of license text.</param>
<param name="line2">Second line of license text.</param>
<param name="line3">Third line of license text.</param>
<param name="line4">Fourth line of license text.</param>
<param name="line5">Fifth line of license text.</param>
</member>
<member name="T:CommandLine.AssemblyUsageAttribute">
<summary>
Models a multiline assembly usage text.
</summary>
</member>
<member name="M:CommandLine.AssemblyUsageAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyUsageAttribute"/> class
with one line of text.
</summary>
<param name="line1">First line of usage text.</param>
</member>
<member name="M:CommandLine.AssemblyUsageAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyUsageAttribute"/> class
with two lines of text.
</summary>
<param name="line1">First line of usage text.</param>
<param name="line2">Second line of usage text.</param>
</member>
<member name="M:CommandLine.AssemblyUsageAttribute.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyUsageAttribute"/> class
with three lines of text.
</summary>
<param name="line1">First line of usage text.</param>
<param name="line2">Second line of usage text.</param>
<param name="line3">Third line of usage text.</param>
</member>
<member name="M:CommandLine.AssemblyUsageAttribute.#ctor(System.String,System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyUsageAttribute"/> class
with four lines of text.
</summary>
<param name="line1">First line of usage text.</param>
<param name="line2">Second line of usage text.</param>
<param name="line3">Third line of usage text.</param>
<param name="line4">Fourth line of usage text.</param>
</member>
<member name="M:CommandLine.AssemblyUsageAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.AssemblyUsageAttribute"/> class
with five lines of text.
</summary>
<param name="line1">First line of usage text.</param>
<param name="line2">Second line of usage text.</param>
<param name="line3">Third line of usage text.</param>
<param name="line4">Fourth line of usage text.</param>
<param name="line5">Fifth line of usage text.</param>
</member>
<member name="T:CommandLine.Text.FormatOptionHelpTextEventArgs">
<summary>
Provides data for the FormatOptionHelpText event.
</summary>
</member>
<member name="M:CommandLine.Text.FormatOptionHelpTextEventArgs.#ctor(CommandLine.BaseOptionAttribute)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Text.FormatOptionHelpTextEventArgs"/> class.
</summary>
<param name="option">Option to format.</param>
</member>
<member name="P:CommandLine.Text.FormatOptionHelpTextEventArgs.Option">
<summary>
Gets the option to format.