-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCsvHelper.XML
3509 lines (3509 loc) · 189 KB
/
CsvHelper.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>CsvHelper</name>
</assembly>
<members>
<member name="T:CsvHelper.Configuration.DefaultCsvClassMap`1">
<summary>
A default <see cref="T:CsvHelper.Configuration.CsvClassMap`1"/> that can be used
to create a class map dynamically.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:CsvHelper.Configuration.CsvClassMap`1">
<summary>
Maps class properties to CSV fields.
</summary>
<typeparam name="T">The <see cref="T:System.Type"/> of class to map.</typeparam>
</member>
<member name="T:CsvHelper.Configuration.CsvClassMap">
<summary>
Maps class properties to CSV fields.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap.CreateMap">
<summary>
Called to create the mappings.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap.#ctor">
<summary>
Allow only internal creation of CsvClassMap.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap.GetMaxIndex">
<summary>
Get the largest index for the
properties and references.
</summary>
<returns>The max index.</returns>
</member>
<member name="P:CsvHelper.Configuration.CsvClassMap.IndexStart">
<summary>
Where to start the index at when
creating auto indexes for property maps.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvClassMap.Constructor">
<summary>
Gets the constructor expression.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvClassMap.PropertyMaps">
<summary>
The class property mappings.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvClassMap.ReferenceMaps">
<summary>
The class property reference mappings.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap`1.ConstructUsing(System.Linq.Expressions.Expression{System.Func{`0}})">
<summary>
Constructs the row object using the given expression.
</summary>
<param name="expression">The expression.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap`1.Map(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
<summary>
Maps a property to a CSV field.
</summary>
<param name="expression">The property to map.</param>
<returns>The property mapping.</returns>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap`1.References``1(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
<summary>
Maps a property to another class map.
</summary>
<typeparam name="TClassMap">The type of the class map.</typeparam>
<param name="expression">The expression.</param>
<returns>The reference mapping for the property.</returns>
</member>
<member name="M:CsvHelper.Configuration.CsvClassMap`1.References(System.Type,System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
<summary>
Maps a property to another class map.
</summary>
<param name="type">The type.</param>
<param name="expression">The expression.</param>
<returns>The reference mapping for the property</returns>
</member>
<member name="M:CsvHelper.Configuration.DefaultCsvClassMap`1.CreateMap">
<summary>
Called to create the mappings.
</summary>
</member>
<member name="T:CsvHelper.Configuration.CsvConfigurationException">
<summary>
Represents configuration errors that occur.
</summary>
</member>
<member name="T:CsvHelper.CsvHelperException">
<summary>
Represents errors that occur in CsvHelper.
</summary>
</member>
<member name="M:CsvHelper.CsvHelperException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvHelperException"/> class.
</summary>
</member>
<member name="M:CsvHelper.CsvHelperException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvHelperException"/> class
with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.CsvHelperException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvHelperException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:CsvHelper.CsvHelperException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvHelperException"/> class
with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvConfigurationException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvConfigurationException"/> class.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvConfigurationException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvConfigurationException"/> class
with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvConfigurationException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvConfigurationException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvConfigurationException"/> class
with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="T:CsvHelper.Configuration.CsvPropertyMap">
<summary>
Mapping info for a property to a CSV field.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.#ctor(System.Reflection.PropertyInfo)">
<summary>
Creates a new <see cref="T:CsvHelper.Configuration.CsvPropertyMap"/> instance using the specified property.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.Name(System.String[])">
<summary>
When reading, is used to get the field
at the index of the name if there was a
header specified. It will look for the
first name match in the order listed.
When writing, sets the name of the
field in the header record.
The first name will be used.
</summary>
<param name="names">The possible names of the CSV field.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.NameIndex(System.Int32)">
<summary>
When reading, is used to get the
index of the name used when there
are multiple names that are the same.
</summary>
<param name="index">The index of the name.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.Index(System.Int32)">
<summary>
When reading, is used to get the field at
the given index. When writing, the fields
will be written in the order of the field
indexes.
</summary>
<param name="index">The index of the CSV field.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.Ignore">
<summary>
Ignore the property when reading and writing.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.Ignore(System.Boolean)">
<summary>
Ignore the property when reading and writing.
</summary>
<param name="ignore">True to ignore, otherwise false.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.Default(System.Object)">
<summary>
The default value that will be used when reading when
the CSV field is empty.
</summary>
<param name="defaultValue">The default value.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverter(CsvHelper.TypeConversion.ITypeConverter)">
<summary>
Specifies the <see cref="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverter(CsvHelper.TypeConversion.ITypeConverter)"/> to use
when converting the property to and from a CSV field.
</summary>
<param name="typeConverter">The TypeConverter to use.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverter``1">
<summary>
Specifies the <see cref="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverter(CsvHelper.TypeConversion.ITypeConverter)"/> to use
when converting the property to and from a CSV field.
</summary>
<typeparam name="T">The <see cref="T:System.Type"/> of the
<see cref="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverter(CsvHelper.TypeConversion.ITypeConverter)"/> to use.</typeparam>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.ConvertUsing``1(System.Func{CsvHelper.ICsvReaderRow,``0})">
<summary>
Specifies an expression to be used to convert data in the
row to the property.
</summary>
<typeparam name="T">The type of the property that will be set.</typeparam>
<param name="convertExpression">The convert expression.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverterOption(System.Globalization.CultureInfo)">
<summary>
The <see cref="T:System.Globalization.CultureInfo"/> used when type converting.
This will override the global <see cref="P:CsvHelper.Configuration.CsvConfiguration.CultureInfo"/>
setting.
</summary>
<param name="cultureInfo">The culture info.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverterOption(System.Globalization.DateTimeStyles)">
<summary>
The <see cref="T:System.Globalization.DateTimeStyles"/> to use when type converting.
This is used when doing any <see cref="T:System.DateTime"/> conversions.
</summary>
<param name="dateTimeStyle">The date time style.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverterOption(System.Globalization.NumberStyles)">
<summary>
The <see cref="T:System.Globalization.NumberStyles"/> to use when type converting.
This is used when doing any number conversions.
</summary>
<param name="numberStyle"></param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverterOption(System.String)">
<summary>
The string format to be used when type converting.
</summary>
<param name="format">The format.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverterOption(System.Boolean,System.String[])">
<summary>
The string values used to represent a boolean when converting.
</summary>
<param name="isTrue">A value indicating whether true values or false values are being set.</param>
<param name="booleanValues">The string boolean values.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMap.TypeConverterOption(System.Boolean,System.Boolean,System.String[])">
<summary>
The string values used to represent a boolean when converting.
</summary>
<param name="isTrue">A value indicating whether true values or false values are being set.</param>
<param name="clearValues">A value indication if the current values should be cleared before adding the new ones.</param>
<param name="booleanValues">The string boolean values.</param>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMap.Data">
<summary>
Property map data.
</summary>
</member>
<member name="T:CsvHelper.Configuration.CsvPropertyMapData">
<summary>
The configured data for the property map.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapData.#ctor(System.Reflection.PropertyInfo)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvPropertyMapData"/> class.
</summary>
<param name="property">The property.</param>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.Property">
<summary>
Gets the <see cref="T:System.Reflection.PropertyInfo"/> that the data
is associated with.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.Names">
<summary>
Gets the list of column names.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.NameIndex">
<summary>
Gets or sets the index of the name.
This is used if there are multiple
columns with the same names.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.IsNameSet">
<summary>
Gets or sets a value indicating if the name was
explicitly set. True if it was explicity set,
otherwise false.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.Index">
<summary>
Gets or sets the column index.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.IsIndexSet">
<summary>
Gets or sets a value indicating if the index was
explicitly set. True if it was explicitly set,
otherwise false.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.TypeConverter">
<summary>
Gets or sets the type converter.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.TypeConverterOptions">
<summary>
Gets or sets the type converter options.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.Ignore">
<summary>
Gets or sets a value indicating whether the field should be ignored.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.Default">
<summary>
Gets or sets the default value used when a CSV field is empty.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.IsDefaultSet">
<summary>
Gets or sets a value indicating whether this instance is default value set.
the default value was explicitly set. True if it was
explicitly set, otherwise false.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapData.ConvertExpression">
<summary>
Gets or sets the expression used to convert data in the
row to the property.
</summary>
</member>
<member name="T:CsvHelper.Configuration.CsvPropertyReferenceMap">
<summary>
Mapping info for a reference property mapping to a class.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyReferenceMap.#ctor(System.Reflection.PropertyInfo,CsvHelper.Configuration.CsvClassMap)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvPropertyReferenceMap"/> class.
</summary>
<param name="property">The property.</param>
<param name="mapping">The <see cref="T:CsvHelper.Configuration.CsvClassMap"/> to use for the reference map.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyReferenceMap.GetMaxIndex">
<summary>
Get the largest index for the
properties and references.
</summary>
<returns>The max index.</returns>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyReferenceMap.Property">
<summary>
Gets the property.
</summary>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyReferenceMap.Mapping">
<summary>
Gets the mapping.
</summary>
</member>
<member name="T:CsvHelper.CsvBadDataException">
<summary>
Represents errors that occur due to bad data.
</summary>
</member>
<member name="M:CsvHelper.CsvBadDataException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvBadDataException"/> class.
</summary>
</member>
<member name="M:CsvHelper.CsvBadDataException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvBadDataException"/> class
with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.CsvBadDataException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvBadDataException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:CsvHelper.CsvBadDataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvHelperException"/> class
with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="T:CsvHelper.CsvFactory">
<summary>
Creates CsvHelper classes.
</summary>
</member>
<member name="T:CsvHelper.ICsvFactory">
<summary>
Defines methods used to create
CsvHelper classes.
</summary>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateParser(System.IO.TextReader,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvParser"/>.
</summary>
<param name="reader">The text reader to use for the csv parser.</param>
<param name="configuration">The configuration to use for the csv parser.</param>
<returns>The created parser.</returns>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateParser(System.IO.TextReader)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvParser"/>.
</summary>
<param name="reader">The text reader to use for the csv parser.</param>
<returns>The created parser.</returns>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateReader(System.IO.TextReader,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvReader"/>.
</summary>
<param name="reader">The text reader to use for the csv reader.</param>
<param name="configuration">The configuration to use for the reader.</param>
<returns>The created reader.</returns>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateReader(System.IO.TextReader)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvReader"/>.
</summary>
<param name="reader">The text reader to use for the csv reader.</param>
<returns>The created reader.</returns>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateReader(CsvHelper.ICsvParser)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvReader"/>.
</summary>
<param name="parser">The parser used to create the reader.</param>
<returns>The created reader.</returns>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateWriter(System.IO.TextWriter,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvWriter"/>.
</summary>
<param name="writer">The text writer to use for the csv writer.</param>
<param name="configuration">The configuration to use for the writer.</param>
<returns>The created writer.</returns>
</member>
<member name="M:CsvHelper.ICsvFactory.CreateWriter(System.IO.TextWriter)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvWriter"/>.
</summary>
<param name="writer">The text writer to use for the csv writer.</param>
<returns>The created writer.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateParser(System.IO.TextReader,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvParser"/>.
</summary>
<param name="reader">The text reader to use for the csv parser.</param>
<param name="configuration">The configuration to use for the csv parser.</param>
<returns>The created parser.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateParser(System.IO.TextReader)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvParser"/>.
</summary>
<param name="reader">The text reader to use for the csv parser.</param>
<returns>The created parser.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateReader(System.IO.TextReader,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvReader"/>.
</summary>
<param name="reader">The text reader to use for the csv reader.</param>
<param name="configuration">The configuration to use for the reader.</param>
<returns>The created reader.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateReader(System.IO.TextReader)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvReader"/>.
</summary>
<param name="reader">The text reader to use for the csv reader.</param>
<returns>The created reader.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateReader(CsvHelper.ICsvParser)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvReader"/>.
</summary>
<param name="parser">The parser used to create the reader.</param>
<returns>The created reader.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateWriter(System.IO.TextWriter,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvWriter"/>.
</summary>
<param name="writer">The text writer to use for the csv writer.</param>
<param name="configuration">The configuration to use for the writer.</param>
<returns>The created writer.</returns>
</member>
<member name="M:CsvHelper.CsvFactory.CreateWriter(System.IO.TextWriter)">
<summary>
Creates an <see cref="T:CsvHelper.ICsvWriter"/>.
</summary>
<param name="writer">The text writer to use for the csv writer.</param>
<returns>The created writer.</returns>
</member>
<member name="T:CsvHelper.CsvMissingFieldException">
<summary>
Represents an error caused because a field is missing
in the header while reading a CSV file.
</summary>
</member>
<member name="T:CsvHelper.CsvReaderException">
<summary>
Represents errors that occur while reading a CSV file.
</summary>
</member>
<member name="M:CsvHelper.CsvReaderException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvReaderException"/> class.
</summary>
</member>
<member name="M:CsvHelper.CsvReaderException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvReaderException"/> class
with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.CsvReaderException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvReaderException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:CsvHelper.CsvReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvReaderException"/> class
with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="M:CsvHelper.CsvMissingFieldException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvMissingFieldException"/> class.
</summary>
</member>
<member name="M:CsvHelper.CsvMissingFieldException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvMissingFieldException"/> class
with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.CsvMissingFieldException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvMissingFieldException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:CsvHelper.CsvMissingFieldException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvMissingFieldException"/> class
with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="T:CsvHelper.CsvParser">
<summary>
Parses a CSV file.
</summary>
</member>
<member name="T:CsvHelper.ICsvParser">
<summary>
Defines methods used the parse a CSV file.
</summary>
</member>
<member name="M:CsvHelper.ICsvParser.Read">
<summary>
Reads a record from the CSV file.
</summary>
<returns>A <see cref="T:String[]" /> of fields for the record read.</returns>
</member>
<member name="P:CsvHelper.ICsvParser.Configuration">
<summary>
Gets the configuration.
</summary>
</member>
<member name="P:CsvHelper.ICsvParser.FieldCount">
<summary>
Gets the field count.
</summary>
</member>
<member name="P:CsvHelper.ICsvParser.CharPosition">
<summary>
Gets the character position that the parser is currently on.
</summary>
</member>
<member name="P:CsvHelper.ICsvParser.BytePosition">
<summary>
Gets the byte position that the parser is currently on.
</summary>
</member>
<member name="P:CsvHelper.ICsvParser.Row">
<summary>
Gets the row of the CSV file that the parser is currently on.
</summary>
</member>
<member name="P:CsvHelper.ICsvParser.RawRecord">
<summary>
Gets the raw row for the current record that was parsed.
</summary>
</member>
<member name="M:CsvHelper.CsvParser.#ctor(System.IO.TextReader)">
<summary>
Creates a new parser using the given <see cref="T:System.IO.TextReader"/>.
</summary>
<param name="reader">The <see cref="T:System.IO.TextReader"/> with the CSV file data.</param>
</member>
<member name="M:CsvHelper.CsvParser.#ctor(System.IO.TextReader,CsvHelper.Configuration.CsvConfiguration)">
<summary>
Creates a new parser using the given <see cref="T:System.IO.TextReader"/>
and <see cref="T:CsvHelper.Configuration.CsvConfiguration"/>.
</summary>
<param name="reader">The <see cref="T:System.IO.TextReader"/> with the CSV file data.</param>
<param name="configuration">The configuration.</param>
</member>
<member name="M:CsvHelper.CsvParser.Read">
<summary>
Reads a record from the CSV file.
</summary>
<returns>A <see cref="T:System.Collections.Generic.List`1"/> of fields for the record read.
If there are no more records, null is returned.</returns>
</member>
<member name="M:CsvHelper.CsvParser.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
<filterpriority>2</filterpriority>
</member>
<member name="M:CsvHelper.CsvParser.Dispose(System.Boolean)">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
<param name="disposing">True if the instance needs to be disposed of.</param>
</member>
<member name="M:CsvHelper.CsvParser.CheckDisposed">
<summary>
Checks if the instance has been disposed of.
</summary>
<exception cref="T:System.ObjectDisposedException"/>
</member>
<member name="M:CsvHelper.CsvParser.AddFieldToRecord(System.Int32@,System.String)">
<summary>
Adds the field to the current record.
</summary>
<param name="recordPosition">The record position to add the field to.</param>
<param name="field">The field to add.</param>
</member>
<member name="M:CsvHelper.CsvParser.AppendField(System.String@,System.Int32,System.Int32)">
<summary>
Appends the current buffer data to the field.
</summary>
<param name="field">The field to append the current buffer to.</param>
<param name="fieldStartPosition">The start position in the buffer that the .</param>
<param name="length">The length.</param>
</member>
<member name="M:CsvHelper.CsvParser.UpdateBytePosition(System.Int32,System.Int32)">
<summary>
Updates the byte position using the data from the reader buffer.
</summary>
<param name="fieldStartPosition">The field start position.</param>
<param name="length">The length.</param>
</member>
<member name="M:CsvHelper.CsvParser.ReadLine">
<summary>
Reads the next line.
</summary>
<returns>The line separated into fields.</returns>
</member>
<member name="M:CsvHelper.CsvParser.GetChar(System.Char@,System.Int32@,System.Int32@,System.String@,System.Boolean,System.Int32@,System.Int32@,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Gets the current character from the buffer while
advancing the buffer if it ran out.
</summary>
<param name="ch">The char that gets the read char set to.</param>
<param name="fieldStartPosition">The start position of the current field.</param>
<param name="rawFieldStartPosition">The start position of the raw field.</param>
<param name="field">The field.</param>
<param name="prevCharWasDelimiter">A value indicating if the previous char read was a delimiter.</param>
<param name="recordPosition">The position in the record we are currently at.</param>
<param name="fieldLength">The length of the field in the buffer.</param>
<param name="inComment">A value indicating if the row is current a comment row.</param>
<param name="isPeek">A value indicating if this call is a peek. If true and the end of the record was found
no record handling will be done.</param>
<returns>A value indicating if read a char was read. True if a char was read, otherwise false.</returns>
</member>
<member name="P:CsvHelper.CsvParser.Configuration">
<summary>
Gets the configuration.
</summary>
</member>
<member name="P:CsvHelper.CsvParser.FieldCount">
<summary>
Gets the field count.
</summary>
</member>
<member name="P:CsvHelper.CsvParser.CharPosition">
<summary>
Gets the character position that the parser is currently on.
</summary>
</member>
<member name="P:CsvHelper.CsvParser.BytePosition">
<summary>
Gets the byte position that the parser is currently on.
</summary>
</member>
<member name="P:CsvHelper.CsvParser.Row">
<summary>
Gets the row of the CSV file that the parser is currently on.
</summary>
</member>
<member name="P:CsvHelper.CsvParser.RawRecord">
<summary>
Gets the raw row for the current record that was parsed.
</summary>
</member>
<member name="T:CsvHelper.CsvParserException">
<summary>
Represents errors that occur while parsing a CSV file.
</summary>
</member>
<member name="M:CsvHelper.CsvParserException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvParserException"/> class.
</summary>
</member>
<member name="M:CsvHelper.CsvParserException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvParserException"/> class
with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.CsvParserException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvParserException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="M:CsvHelper.CsvParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.CsvParserException"/> class
with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="T:CsvHelper.Configuration.CsvPropertyMapCollection">
<summary>
A collection that holds <see cref="T:CsvHelper.Configuration.CsvPropertyMap"/>'s.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvPropertyMapCollection"/> class.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.#ctor(System.Collections.Generic.IComparer{CsvHelper.Configuration.CsvPropertyMap})">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.Configuration.CsvPropertyMapCollection"/> class.
</summary>
<param name="comparer">The comparer to use when sorting the property maps.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
</returns>
<filterpriority>1</filterpriority>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
</returns>
<filterpriority>2</filterpriority>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.Add(CsvHelper.Configuration.CsvPropertyMap)">
<summary>
Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</summary>
<param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
</exception>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.AddRange(System.Collections.Generic.ICollection{CsvHelper.Configuration.CsvPropertyMap})">
<summary>
Adds a range of items to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</summary>
<param name="collection">The collection to add.</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.Clear">
<summary>
Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</summary>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
</exception>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.Contains(CsvHelper.Configuration.CsvPropertyMap)">
<summary>
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
</summary>
<returns>
true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
</returns>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.CopyTo(CsvHelper.Configuration.CsvPropertyMap[],System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param><param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param><exception cref="T:System.ArgumentNullException"><paramref name="array"/> is null.</exception><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex"/> is less than 0.</exception><exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from <paramref name="arrayIndex"/> to the end of the destination <paramref name="array"/>.</exception>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.Remove(CsvHelper.Configuration.CsvPropertyMap)">
<summary>
Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</summary>
<returns>
true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
</returns>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</param><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
</exception>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.IndexOf(CsvHelper.Configuration.CsvPropertyMap)">
<summary>
Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
</summary>
<returns>
The index of <paramref name="item"/> if found in the list; otherwise, -1.
</returns>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.
</param>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.Insert(System.Int32,CsvHelper.Configuration.CsvPropertyMap)">
<summary>
Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item"/> should be inserted.
</param><param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.
</param><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.
</exception><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.
</exception>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapCollection.RemoveAt(System.Int32)">
<summary>
Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
</summary>
<param name="index">The zero-based index of the item to remove.
</param><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.
</exception><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.
</exception>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapCollection.Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</summary>
<returns>
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</returns>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapCollection.IsReadOnly">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
</summary>
<returns>
true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
</returns>
</member>
<member name="P:CsvHelper.Configuration.CsvPropertyMapCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<returns>
The element at the specified index.
</returns>
<param name="index">The zero-based index of the element to get or set.
</param><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.
</exception><exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Collections.Generic.IList`1"/> is read-only.
</exception>
</member>
<member name="T:CsvHelper.Configuration.CsvPropertyMapComparer">
<summary>
Used to compare <see cref="T:CsvHelper.Configuration.CsvPropertyMap"/>s.
The order is by field index ascending. Any
fields that don't have an index are pushed
to the bottom.
</summary>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapComparer.Compare(System.Object,System.Object)">
<summary>
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
</summary>
<returns>
Value
Condition
Less than zero
<paramref name="x"/> is less than <paramref name="y"/>.
Zero
<paramref name="x"/> equals <paramref name="y"/>.
Greater than zero
<paramref name="x"/> is greater than <paramref name="y"/>.
</returns>
<param name="x">The first object to compare.
</param><param name="y">The second object to compare.
</param><exception cref="T:System.ArgumentException">Neither <paramref name="x"/> nor <paramref name="y"/> implements the <see cref="T:System.IComparable"/> interface.
-or-
<paramref name="x"/> and <paramref name="y"/> are of different types and neither one can handle comparisons with the other.
</exception><filterpriority>2</filterpriority>
</member>
<member name="M:CsvHelper.Configuration.CsvPropertyMapComparer.Compare(CsvHelper.Configuration.CsvPropertyMap,CsvHelper.Configuration.CsvPropertyMap)">
<summary>
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
</summary>
<returns>
Value
Condition
Less than zero
<paramref name="x"/> is less than <paramref name="y"/>.
Zero
<paramref name="x"/> equals <paramref name="y"/>.
Greater than zero
<paramref name="x"/> is greater than <paramref name="y"/>.
</returns>
<param name="x">The first object to compare.
</param><param name="y">The second object to compare.
</param>
</member>