-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommandLine.xml
2945 lines (2945 loc) · 180 KB
/
CommandLine.xml
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.BaseAttribute">
<summary>
Models a base attribute to define command line syntax.
</summary>
</member>
<member name="M:CommandLine.BaseAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.BaseAttribute"/> class.
</summary>
</member>
<member name="P:CommandLine.BaseAttribute.Required">
<summary>
Gets or sets a value indicating whether a command line option is required.
</summary>
</member>
<member name="P:CommandLine.BaseAttribute.Min">
<summary>
When applied to <see cref="T:System.Collections.Generic.IEnumerable`1"/> properties defines
the lower range of items.
</summary>
<remarks>If not set, no lower range is enforced.</remarks>
</member>
<member name="P:CommandLine.BaseAttribute.Max">
<summary>
When applied to <see cref="T:System.Collections.Generic.IEnumerable`1"/> properties defines
the upper range of items.
</summary>
<remarks>If not set, no upper range is enforced.</remarks>
</member>
<member name="P:CommandLine.BaseAttribute.Default">
<summary>
Gets or sets mapped property default value.
</summary>
</member>
<member name="P:CommandLine.BaseAttribute.HelpText">
<summary>
Gets or sets a short description of this command line option. Usually a sentence summary.
</summary>
</member>
<member name="P:CommandLine.BaseAttribute.MetaValue">
<summary>
Gets or sets mapped property meta value. Usually an uppercase hint of required value type.
</summary>
</member>
<member name="P:CommandLine.BaseAttribute.Hidden">
<summary>
Gets or sets a value indicating whether a command line option is visible in the help text.
</summary>
</member>
<member name="F:CommandLine.Core.Specification.conversionType">
This information is denormalized to decouple Specification from PropertyInfo.
</member>
<member name="T:CommandLine.ErrorType">
<summary>
Discriminator enumeration of <see cref="T:CommandLine.Error"/> derivates.
</summary>
</member>
<member name="F:CommandLine.ErrorType.BadFormatTokenError">
<summary>
Value of <see cref="T:CommandLine.BadFormatTokenError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.MissingValueOptionError">
<summary>
Value of <see cref="T:CommandLine.MissingValueOptionError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.UnknownOptionError">
<summary>
Value of <see cref="T:CommandLine.UnknownOptionError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.MissingRequiredOptionError">
<summary>
Value of <see cref="T:CommandLine.MissingRequiredOptionError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.MutuallyExclusiveSetError">
<summary>
Value of <see cref="T:CommandLine.MutuallyExclusiveSetError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.BadFormatConversionError">
<summary>
Value of <see cref="T:CommandLine.BadFormatConversionError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.SequenceOutOfRangeError">
<summary>
Value of <see cref="T:CommandLine.SequenceOutOfRangeError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.RepeatedOptionError">
<summary>
Value of <see cref="T:CommandLine.RepeatedOptionError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.NoVerbSelectedError">
<summary>
Value of <see cref="T:CommandLine.NoVerbSelectedError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.BadVerbSelectedError">
<summary>
Value of <see cref="T:CommandLine.BadVerbSelectedError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.HelpRequestedError">
<summary>
Value of <see cref="T:CommandLine.HelpRequestedError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.HelpVerbRequestedError">
<summary>
Value of <see cref="T:CommandLine.HelpVerbRequestedError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.VersionRequestedError">
<summary>
Value of <see cref="T:CommandLine.VersionRequestedError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.SetValueExceptionError">
<summary>
Value of <see cref="T:CommandLine.SetValueExceptionError"/> type.
</summary>
</member>
<member name="F:CommandLine.ErrorType.InvalidAttributeConfigurationError">
<summary>
Value of <see cref="T:CommandLine.InvalidAttributeConfigurationError"/> type.
</summary>
</member>
<member name="T:CommandLine.Error">
<summary>
Base type of all errors.
</summary>
<remarks>All errors are defined within the system. There's no reason to create custom derivate types.</remarks>
</member>
<member name="M:CommandLine.Error.#ctor(CommandLine.ErrorType,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Error"/> class.
</summary>
<param name="tag">Type discriminator tag.</param>
<param name="stopsProcessing">Tells if error stops parsing process.</param>
</member>
<member name="M:CommandLine.Error.#ctor(CommandLine.ErrorType)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Error"/> class.
</summary>
<param name="tag">Type discriminator tag.</param>
</member>
<member name="P:CommandLine.Error.Tag">
<summary>
Error type discriminator, defined as <see cref="T:CommandLine.ErrorType"/> enumeration.
</summary>
</member>
<member name="P:CommandLine.Error.StopsProcessing">
<summary>
Tells if error stops parsing process.
Filtered by <see cref="M:CommandLine.ErrorExtensions.OnlyMeaningfulOnes(System.Collections.Generic.IEnumerable{CommandLine.Error})"/>.
</summary>
</member>
<member name="M:CommandLine.Error.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns><value>true</value> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <value>false</value>.</returns>
</member>
<member name="M:CommandLine.Error.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<remarks>A hash code for the current <see cref="T:System.Object"/>.</remarks>
</member>
<member name="M:CommandLine.Error.Equals(CommandLine.Error)">
<summary>
Returns a value that indicates whether the current instance and a specified <see cref="T:CommandLine.Error"/> have the same value.
</summary>
<param name="other">The <see cref="T:CommandLine.Error"/> instance to compare.</param>
<returns><value>true</value> if this instance of <see cref="T:CommandLine.Error"/> and <paramref name="other"/> have the same value; otherwise, <value>false</value>.</returns>
</member>
<member name="T:CommandLine.TokenError">
<summary>
Base type of all errors related to bad token detection.
</summary>
</member>
<member name="M:CommandLine.TokenError.#ctor(CommandLine.ErrorType,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.TokenError"/> class.
</summary>
<param name="tag">Error type.</param>
<param name="token">Problematic token.</param>
</member>
<member name="P:CommandLine.TokenError.Token">
<summary>
The string containing the token text.
</summary>
</member>
<member name="M:CommandLine.TokenError.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns><value>true</value> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <value>false</value>.</returns>
</member>
<member name="M:CommandLine.TokenError.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<remarks>A hash code for the current <see cref="T:System.Object"/>.</remarks>
</member>
<member name="M:CommandLine.TokenError.Equals(CommandLine.TokenError)">
<summary>
Returns a value that indicates whether the current instance and a specified <see cref="T:CommandLine.TokenError"/> have the same value.
</summary>
<param name="other">The <see cref="T:CommandLine.TokenError"/> instance to compare.</param>
<returns><value>true</value> if this instance of <see cref="T:CommandLine.TokenError"/> and <paramref name="other"/> have the same value; otherwise, <value>false</value>.</returns>
</member>
<member name="T:CommandLine.BadFormatTokenError">
<summary>
Models an error generated when an invalid token is detected.
</summary>
</member>
<member name="T:CommandLine.NamedError">
<summary>
Base type of all erros with name information.
</summary>
</member>
<member name="M:CommandLine.NamedError.#ctor(CommandLine.ErrorType,CommandLine.NameInfo)">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.NamedError"/> class.
</summary>
<param name="tag">Error type.</param>
<param name="nameInfo">Problematic name.</param>
</member>
<member name="P:CommandLine.NamedError.NameInfo">
<summary>
Name information relative to this error instance.
</summary>
</member>
<member name="M:CommandLine.NamedError.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns><value>true</value> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <value>false</value>.</returns>
</member>
<member name="M:CommandLine.NamedError.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<remarks>A hash code for the current <see cref="T:System.Object"/>.</remarks>
</member>
<member name="M:CommandLine.NamedError.Equals(CommandLine.NamedError)">
<summary>
Returns a value that indicates whether the current instance and a specified <see cref="T:CommandLine.NamedError"/> have the same value.
</summary>
<param name="other">The <see cref="T:CommandLine.NamedError"/> instance to compare.</param>
<returns><value>true</value> if this instance of <see cref="T:CommandLine.NamedError"/> and <paramref name="other"/> have the same value; otherwise, <value>false</value>.</returns>
</member>
<member name="T:CommandLine.MissingValueOptionError">
<summary>
Models an error generated when an option lacks its value.
</summary>
</member>
<member name="T:CommandLine.UnknownOptionError">
<summary>
Models an error generated when an unknown option is detected.
</summary>
</member>
<member name="T:CommandLine.MissingRequiredOptionError">
<summary>
Models an error generated when a required option is required.
</summary>
</member>
<member name="T:CommandLine.MutuallyExclusiveSetError">
<summary>
Models an error generated when a an option from another set is defined.
</summary>
</member>
<member name="P:CommandLine.MutuallyExclusiveSetError.SetName">
<summary>
Option's set name.
</summary>
</member>
<member name="T:CommandLine.BadFormatConversionError">
<summary>
Models an error generated when a value conversion fails.
</summary>
</member>
<member name="T:CommandLine.SequenceOutOfRangeError">
<summary>
Models an error generated when a sequence value lacks elements.
</summary>
</member>
<member name="T:CommandLine.RepeatedOptionError">
<summary>
Models an error generated when an option is repeated two or more times.
</summary>
</member>
<member name="T:CommandLine.BadVerbSelectedError">
<summary>
Models an error generated when an unknown verb is detected.
</summary>
</member>
<member name="T:CommandLine.HelpRequestedError">
<summary>
Models an error generated when a user explicitly requests help.
</summary>
</member>
<member name="T:CommandLine.HelpVerbRequestedError">
<summary>
Models an error generated when a user explicitly requests help in verb commands scenario.
</summary>
</member>
<member name="P:CommandLine.HelpVerbRequestedError.Verb">
<summary>
Verb command string.
</summary>
</member>
<member name="P:CommandLine.HelpVerbRequestedError.Type">
<summary>
<see cref="T:System.Type"/> of verb command.
</summary>
</member>
<member name="P:CommandLine.HelpVerbRequestedError.Matched">
<summary>
<value>true</value> if verb command is found; otherwise <value>false</value>.
</summary>
</member>
<member name="T:CommandLine.NoVerbSelectedError">
<summary>
Models an error generated when no verb is selected.
</summary>
</member>
<member name="T:CommandLine.VersionRequestedError">
<summary>
Models an error generated when a user explicitly requests version.
</summary>
</member>
<member name="T:CommandLine.SetValueExceptionError">
<summary>
Models as error generated when exception is thrown at Property.SetValue
</summary>
</member>
<member name="P:CommandLine.SetValueExceptionError.Exception">
<summary>
The expection thrown from Property.SetValue
</summary>
</member>
<member name="P:CommandLine.SetValueExceptionError.Value">
<summary>
The value that had to be set to the property
</summary>
</member>
<member name="T:CommandLine.InvalidAttributeConfigurationError">
<summary>
Models an error generated when an invalid token is detected.
</summary>
</member>
<member name="M:CommandLine.Infrastructure.EnumerableExtensions.Group``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
<summary>
Breaks a collection into groups of a specified size.
</summary>
<param name="source">A collection of <typeparam name="T"/>.</param>
<param name="groupSize">The number of items each group shall contain.</param>
<returns>An enumeration of T[].</returns>
<remarks>An incomplete group at the end of the source collection will be silently dropped.</remarks>
</member>
<member name="F:CommandLine.Infrastructure.ReflectionHelper._overrides">
<summary>
Per thread assembly attribute overrides for testing.
</summary>
</member>
<member name="M:CommandLine.Infrastructure.ReflectionHelper.SetAttributeOverride(System.Collections.Generic.IEnumerable{System.Attribute})">
<summary>
Assembly attribute overrides for testing.
</summary>
<remarks>
The implementation will fail if two or more attributes of the same type
are included in <paramref name="overrides"/>.
</remarks>
<param name="overrides">
Attributes that replace the existing assembly attributes or null,
to clear any testing attributes.
</param>
</member>
<member name="T:CommandLine.NameInfo">
<summary>
Models name information, used in <see cref="T:CommandLine.Error"/> instances.
</summary>
</member>
<member name="F:CommandLine.NameInfo.EmptyName">
<summary>
Represents an empty name information. Used when <see cref="T:CommandLine.Error"/> are tied to values,
rather than options.
</summary>
</member>
<member name="P:CommandLine.NameInfo.ShortName">
<summary>
Gets the short name of the name information.
</summary>
</member>
<member name="P:CommandLine.NameInfo.LongName">
<summary>
Gets the long name of the name information.
</summary>
</member>
<member name="P:CommandLine.NameInfo.NameText">
<summary>
Gets a formatted text with unified name information.
</summary>
</member>
<member name="M:CommandLine.NameInfo.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns><value>true</value> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <value>false</value>.</returns>
</member>
<member name="M:CommandLine.NameInfo.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<remarks>A hash code for the current <see cref="T:System.Object"/>.</remarks>
</member>
<member name="M:CommandLine.NameInfo.Equals(CommandLine.NameInfo)">
<summary>
Returns a value that indicates whether the current instance and a specified <see cref="T:CommandLine.NameInfo"/> have the same value.
</summary>
<param name="other">The <see cref="T:CommandLine.NameInfo"/> instance to compare.</param>
<returns><value>true</value> if this instance of <see cref="T:CommandLine.NameInfo"/> and <paramref name="other"/> have the same value; otherwise, <value>false</value>.</returns>
</member>
<member name="T:CommandLine.NullInstance">
<summary>
Models a null result when constructing a <see cref="T:CommandLine.ParserResult`1"/> in a faling verbs scenario.
</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.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.#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="P:CommandLine.OptionAttribute.LongName">
<summary>
Gets long name of this command line option. This name is usually a single english word.
</summary>
</member>
<member name="P:CommandLine.OptionAttribute.ShortName">
<summary>
Gets a short name of this command line option, made of one character.
</summary>
</member>
<member name="P:CommandLine.OptionAttribute.SetName">
<summary>
Gets or sets the option's mutually exclusive set name.
</summary>
</member>
<member name="P:CommandLine.OptionAttribute.Separator">
<summary>
When applying attribute to <see cref="T:System.Collections.Generic.IEnumerable`1"/> target properties,
it allows you to split an argument and consume its content as a sequence.
</summary>
</member>
<member name="T:CommandLine.Parser">
<summary>
Provides methods to parse command line arguments.
</summary>
</member>
<member name="M:CommandLine.Parser.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Parser"/> class.
</summary>
</member>
<member name="M:CommandLine.Parser.#ctor(System.Action{CommandLine.ParserSettings})">
<summary>
Initializes a new instance of the <see cref="T:CommandLine.Parser"/> class,
configurable with <see cref="T:CommandLine.ParserSettings"/> using a delegate.
</summary>
<param name="configuration">The <see cref="T:System.Action`1"/> delegate used to configure
aspects and behaviors of the parser.</param>
</member>
<member name="M:CommandLine.Parser.Finalize">
<summary>
Finalizes an instance of the <see cref="T:CommandLine.Parser"/> class.
</summary>
</member>
<member name="P:CommandLine.Parser.Default">
<summary>
Gets the singleton instance created with basic defaults.
</summary>
</member>
<member name="P:CommandLine.Parser.Settings">
<summary>
Gets the instance that implements <see cref="T:CommandLine.ParserSettings"/> in use.
</summary>
</member>
<member name="M:CommandLine.Parser.ParseArguments``1(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments constructing values in an instance of type <typeparamref name="T"/>.
Grammar rules are defined decorating public properties with appropriate attributes.
</summary>
<typeparam name="T">Type of the target instance built with parsed value.</typeparam>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing an instance of type <typeparamref name="T"/> with parsed values
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
</member>
<member name="M:CommandLine.Parser.ParseArguments``1(System.Func{``0},System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments constructing values in an instance of type <typeparamref name="T"/>.
Grammar rules are defined decorating public properties with appropriate attributes.
</summary>
<typeparam name="T">Type of the target instance built with parsed value.</typeparam>
<param name="factory">A <see cref="T:System.Func`1"/> delegate used to initialize the target instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing an instance of type <typeparamref name="T"/> with parsed values
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
</member>
<member name="M:CommandLine.Parser.ParseArguments(System.Collections.Generic.IEnumerable{System.String},System.Type[])">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from the array of types supplied by <paramref name="types"/>.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<param name="types">A <see cref="T:System.Type"/> array used to supply verb alternatives.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Thrown if <paramref name="types"/> array is empty.</exception>
<remarks>All types must expose a parameterless constructor. It's strongly recommended to use a generic overload.</remarks>
</member>
<member name="M:CommandLine.Parser.Dispose">
<summary>
Frees resources owned by the instance.
</summary>
</member>
<member name="T:CommandLine.ParserExtensions">
<summary>
Defines generic overloads for <see cref="M:CommandLine.Parser.ParseArguments(System.Collections.Generic.IEnumerable{System.String},System.Type[])"/>.
</summary>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``2(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``3(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``4(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``5(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``6(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``7(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``8(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``9(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``10(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``11(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<typeparam name="T11">The type of the eleventh verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``12(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<typeparam name="T11">The type of the eleventh verb.</typeparam>
<typeparam name="T12">The type of the twelfth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``13(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<typeparam name="T11">The type of the eleventh verb.</typeparam>
<typeparam name="T12">The type of the twelfth verb.</typeparam>
<typeparam name="T13">The type of the thirteenth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``14(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<typeparam name="T11">The type of the eleventh verb.</typeparam>
<typeparam name="T12">The type of the twelfth verb.</typeparam>
<typeparam name="T13">The type of the thirteenth verb.</typeparam>
<typeparam name="T14">The type of the fourteenth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``15(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<typeparam name="T11">The type of the eleventh verb.</typeparam>
<typeparam name="T12">The type of the twelfth verb.</typeparam>
<typeparam name="T13">The type of the thirteenth verb.</typeparam>
<typeparam name="T14">The type of the fourteenth verb.</typeparam>
<typeparam name="T15">The type of the fifteenth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="M:CommandLine.ParserExtensions.ParseArguments``16(CommandLine.Parser,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Parses a string array of command line arguments for verb commands scenario, constructing the proper instance from types as generic arguments.
Grammar rules are defined decorating public properties with appropriate attributes.
The <see cref="T:CommandLine.VerbAttribute"/> must be applied to types in the array.
</summary>
<typeparam name="T1">The type of the first verb.</typeparam>
<typeparam name="T2">The type of the second verb.</typeparam>
<typeparam name="T3">The type of the third verb.</typeparam>
<typeparam name="T4">The type of the fourth verb.</typeparam>
<typeparam name="T5">The type of the fifth verb.</typeparam>
<typeparam name="T6">The type of the sixth verb.</typeparam>
<typeparam name="T7">The type of the seventh verb.</typeparam>
<typeparam name="T8">The type of the eighth verb.</typeparam>
<typeparam name="T9">The type of the ninth verb.</typeparam>
<typeparam name="T10">The type of the tenth verb.</typeparam>
<typeparam name="T11">The type of the eleventh verb.</typeparam>
<typeparam name="T12">The type of the twelfth verb.</typeparam>
<typeparam name="T13">The type of the thirteenth verb.</typeparam>
<typeparam name="T14">The type of the fourteenth verb.</typeparam>
<typeparam name="T15">The type of the fifteenth verb.</typeparam>
<typeparam name="T16">The type of the sixteenth verb.</typeparam>
<param name="parser">A <see cref="T:CommandLine.Parser"/> instance.</param>
<param name="args">A <see cref="T:System.String"/> array of command line arguments, normally supplied by application entry point.</param>
<returns>A <see cref="T:CommandLine.ParserResult`1"/> containing the appropriate instance with parsed values as a <see cref="T:System.Object"/>
and a sequence of <see cref="T:CommandLine.Error"/>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if one or more arguments are null.</exception>
<remarks>All types must expose a parameterless constructor.</remarks>
</member>
<member name="T:CommandLine.ParserResultType">
<summary>
Discriminator enumeration of <see cref="T:CommandLine.ParserResultType"/> derivates.
</summary>
</member>
<member name="F:CommandLine.ParserResultType.Parsed">
<summary>
Value of <see cref="T:CommandLine.Parsed`1"/> type.
</summary>
</member>
<member name="F:CommandLine.ParserResultType.NotParsed">
<summary>
Value of <see cref="T:CommandLine.NotParsed`1"/> type.
</summary>
</member>
<member name="T:CommandLine.ParserResult`1">
<summary>
Models a parser result. When inherited by <see cref="T:CommandLine.Parsed`1"/>, it contains an instance of type <typeparamref name="T"/>
with parsed values.
When inherited by <see cref="T:CommandLine.NotParsed`1"/>, it contains a sequence of <see cref="T:CommandLine.Error"/>.
</summary>
<typeparam name="T">The type with attributes that define the syntax of parsing rules.</typeparam>
</member>
<member name="P:CommandLine.ParserResult`1.Tag">
<summary>
Parser result type discriminator, defined as <see cref="T:CommandLine.ParserResultType"/> enumeration.
</summary>
</member>
<member name="T:CommandLine.Parsed`1">
<summary>
It contains an instance of type <typeparamref name="T"/> with parsed values.
</summary>
<typeparam name="T">The type with attributes that define the syntax of parsing rules.</typeparam>
</member>
<member name="P:CommandLine.Parsed`1.Value">
<summary>
Gets the instance with parsed values.
</summary>
</member>
<member name="M:CommandLine.Parsed`1.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns><value>true</value> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <value>false</value>.</returns>
</member>
<member name="M:CommandLine.Parsed`1.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<remarks>A hash code for the current <see cref="T:System.Object"/>.</remarks>
</member>
<member name="M:CommandLine.Parsed`1.Equals(CommandLine.Parsed{`0})">
<summary>
Returns a value that indicates whether the current instance and a specified <see cref="T:CommandLine.Parsed`1"/> have the same value.
</summary>
<param name="other">The <see cref="T:CommandLine.Parsed`1"/> instance to compare.</param>
<returns><value>true</value> if this instance of <see cref="T:CommandLine.Parsed`1"/> and <paramref name="other"/> have the same value; otherwise, <value>false</value>.</returns>
</member>
<member name="T:CommandLine.NotParsed`1">
<summary>
It contains a sequence of <see cref="T:CommandLine.Error"/>.
</summary>
<typeparam name="T">The type with attributes that define the syntax of parsing rules.</typeparam>
</member>
<member name="P:CommandLine.NotParsed`1.Errors">
<summary>
Gets the sequence of parsing errors.
</summary>
</member>
<member name="M:CommandLine.NotParsed`1.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns><value>true</value> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <value>false</value>.</returns>
</member>
<member name="M:CommandLine.NotParsed`1.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<remarks>A hash code for the current <see cref="T:System.Object"/>.</remarks>
</member>
<member name="M:CommandLine.NotParsed`1.Equals(CommandLine.NotParsed{`0})">
<summary>
Returns a value that indicates whether the current instance and a specified <see cref="T:CommandLine.NotParsed`1"/> have the same value.
</summary>
<param name="other">The <see cref="T:CommandLine.NotParsed`1"/> instance to compare.</param>
<returns><value>true</value> if this instance of <see cref="T:CommandLine.NotParsed`1"/> and <paramref name="other"/> have the same value; otherwise, <value>false</value>.</returns>
</member>
<member name="T:CommandLine.ParserResultExtensions">
<summary>
Provides convenience extension methods for <see cref="T:CommandLine.ParserResult`1"/>.
</summary>