-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCsvHelper.xml
More file actions
7986 lines (7986 loc) · 411 KB
/
CsvHelper.xml
File metadata and controls
7986 lines (7986 loc) · 411 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>CsvHelper</name>
</assembly>
<members>
<member name="T:CsvHelper.ArrayHelper">
<summary>
Methods to help with arrays.
</summary>
</member>
<member name="M:CsvHelper.ArrayHelper.Trim(System.Char[],System.Int32@,System.Int32@,System.Char[])">
<summary>
Trims the characters off the start and end of the buffer
by updating the start and length arguments.
</summary>
<param name="buffer">The buffer.</param>
<param name="start">The start.</param>
<param name="length">The length.</param>
<param name="trimChars">The characters to trim.</param>
</member>
<member name="M:CsvHelper.ArrayHelper.Contains(System.Char[],System.Char@)">
<summary>
Determines whether this given array contains the given character.
</summary>
<param name="array">The array to search.</param>
<param name="c">The character to look for.</param>
<returns>
<c>true</c> if the array contains the characters, otherwise <c>false</c>.
</returns>
</member>
<member name="T:CsvHelper.BadDataException">
<summary>
Represents errors that occur due to bad data.
</summary>
</member>
<member name="F:CsvHelper.BadDataException.Field">
<summary>
The full field unedited.
</summary>
</member>
<member name="F:CsvHelper.BadDataException.RawRecord">
<summary>
The full row unedited.
</summary>
</member>
<member name="M:CsvHelper.BadDataException.#ctor(System.String,System.String,CsvHelper.CsvContext)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.BadDataException"/> class.
</summary>
<param name="field">The full field unedited.</param>
<param name="rawRecord">The full row unedited.</param>
<param name="context">The reading context.</param>
</member>
<member name="M:CsvHelper.BadDataException.#ctor(System.String,System.String,CsvHelper.CsvContext,System.String)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.BadDataException"/> class
with a specified error message.
</summary>
<param name="field">The full field unedited.</param>
<param name="rawRecord">The full row unedited.</param>
<param name="context">The reading context.</param>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:CsvHelper.BadDataException.#ctor(System.String,System.String,CsvHelper.CsvContext,System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:CsvHelper.BadDataException"/> class
with a specified error message and a reference to the inner exception that
is the cause of this exception.
</summary>
<param name="field">The full field unedited.</param>
<param name="rawRecord">The full row unedited.</param>
<param name="context">The reading context.</param>
<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="T:CsvHelper.Configuration.Attributes.AllowCommentsAttribute">
<summary>
A value indicating whether comments are allowed.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.AllowCommentsAttribute.AllowComments">
<summary>
Gets a value indicating whether comments are allowed.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.AllowCommentsAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether comments are allowed.
</summary>
<param name="allowComments">The value indicating whether comments are allowed.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.AllowCommentsAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.BooleanFalseValuesAttribute">
<summary>
The string values used to represent a boolean false when converting.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.BooleanFalseValuesAttribute.FalseValues">
<summary>
Gets the false values.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanFalseValuesAttribute.#ctor(System.String)">
<summary>
The string values used to represent a boolean false when converting.
</summary>
<param name="falseValue">The false values.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanFalseValuesAttribute.#ctor(System.String[])">
<summary>
The string values used to represent a boolean false when converting.
</summary>
<param name="falseValues">The false values.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanFalseValuesAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanFalseValuesAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.BooleanTrueValuesAttribute">
<summary>
The string values used to represent a boolean true when converting.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.BooleanTrueValuesAttribute.TrueValues">
<summary>
Gets the true values.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanTrueValuesAttribute.#ctor(System.String)">
<summary>
The string values used to represent a boolean true when converting.
</summary>
<param name="trueValue"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanTrueValuesAttribute.#ctor(System.String[])">
<summary>
The string values used to represent a boolean true when converting.
</summary>
<param name="trueValues"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanTrueValuesAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.BooleanTrueValuesAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.BufferSizeAttribute">
<summary>
The size of the buffer used for parsing and writing CSV files.
Default is 0x1000.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.BufferSizeAttribute.BufferSize">
<summary>
The buffer size.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BufferSizeAttribute.#ctor(System.Int32)">
<summary>
The size of the buffer used for parsing and writing CSV files.
</summary>
<param name="bufferSize"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.BufferSizeAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.CacheFieldsAttribute">
<summary>
Cache fields that are created when parsing.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.CacheFieldsAttribute.CacheFields">
<summary>
Cache fields that are created when parsing.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CacheFieldsAttribute.#ctor(System.Boolean)">
<summary>
Cache fields that are created when parsing.
</summary>
<param name="cacheFields"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CacheFieldsAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.CommentAttribute">
<summary>
The character used to denote a line that is commented out.
Default is #.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.CommentAttribute.Comment">
<summary>
Gets the character used to denote a line that is commented out.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CommentAttribute.#ctor(System.Char)">
<summary>
The character used to denote a line that is commented out.
</summary>
<param name="comment">The comment character.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CommentAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.ConstantAttribute">
<summary>
The constant value that will be used for every record when
reading and writing. This value will always be used no matter
what other mapping configurations are specified.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.ConstantAttribute.Constant">
<summary>
Gets the constant.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.ConstantAttribute.#ctor(System.Object)">
<summary>
The constant value that will be used for every record when
reading and writing. This value will always be used no matter
what other mapping configurations are specified.
</summary>
<param name="constant">The constant.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.ConstantAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.ConstantAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.CountBytesAttribute">
<summary>
A value indicating whether the number of bytes should
be counted while parsing. This will slow down parsing
because it needs to get the byte count of every char for the given encoding.
The <see cref="T:System.Text.Encoding"/> needs to be set correctly for this to be accurate.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.CountBytesAttribute.CountBytes">
<summary>
A value indicating whether the number of bytes should
be counted while parsing. This will slow down parsing
because it needs to get the byte count of every char for the given encoding.
The <see cref="T:System.Text.Encoding"/> needs to be set correctly for this to be accurate.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CountBytesAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether the number of bytes should
be counted while parsing. This will slow down parsing
because it needs to get the byte count of every char for the given encoding.
The <see cref="T:System.Text.Encoding"/> needs to be set correctly for this to be accurate.
</summary>
<param name="countBytes"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CountBytesAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.CultureInfoAttribute">
<summary>
When applied to a member, specifies the <see cref="T:System.Globalization.CultureInfo"/>
used when type converting the member. When applied to a type, the value of
<see cref="P:CsvHelper.Configuration.CsvConfiguration.CultureInfo"/> in the <see cref="T:CsvHelper.Configuration.CsvConfiguration"/>
returned by <see cref="M:CsvHelper.Configuration.CsvConfiguration.FromAttributes``1"/>
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.CultureInfoAttribute.CultureInfo">
<summary>
Gets the culture info.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CultureInfoAttribute.#ctor(System.String)">
<summary><inheritdoc cref="T:CsvHelper.Configuration.Attributes.CultureInfoAttribute"/></summary>
<param name="name">
The name of a culture (case insensitive), or the literal values <c>"InvariantCulture"</c>,
<c>"CurrentCulture"</c>, <c>"CurrentUICulture"</c>, <c>"InstalledUICulture"</c> to use the
corresponding static properties on <see cref="T:System.Globalization.CultureInfo"/>.
</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.CultureInfoAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.CultureInfoAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.CultureInfoAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute">
<summary>
The <see cref="P:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute.DateTimeStyles"/> to use when type converting.
This is used when doing any <see cref="T:System.DateTime"/> conversions.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute.DateTimeStyles">
<summary>
Gets the date time styles.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute.#ctor(System.Globalization.DateTimeStyles)">
<summary>
The <see cref="P:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute.DateTimeStyles"/> to use when type converting.
This is used when doing any <see cref="T:System.DateTime"/> conversions.
</summary>
<param name="dateTimeStyles">The date time styles.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.DateTimeStylesAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.DefaultAttribute">
<summary>
The default value that will be used when reading when
the CSV field is empty.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.DefaultAttribute.Default">
<summary>
Gets the default value.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DefaultAttribute.#ctor(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.Attributes.DefaultAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.DefaultAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.DelimiterAttribute">
<summary>
The delimiter used to separate fields.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.DelimiterAttribute.Delimiter">
<summary>
Gets the delimiter.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DelimiterAttribute.#ctor(System.String)">
<summary>
The delimiter used to separate fields.
</summary>
<param name="delimiter">The delimiter.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DelimiterAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.DetectColumnCountChangesAttribute">
<summary>
A value indicating whether changes in the column
count should be detected. If <see langword="true"/>, a <see cref="T:CsvHelper.BadDataException"/>
will be thrown if a different column count is detected.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.DetectColumnCountChangesAttribute.DetectColumnCountChanges">
<summary>
A value indicating whether changes in the column
count should be detected. If <see langword="true"/>, a <see cref="T:CsvHelper.BadDataException"/>
will be thrown if a different column count is detected.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DetectColumnCountChangesAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether changes in the column
count should be detected. If <see langword="true"/>, a <see cref="T:CsvHelper.BadDataException"/>
will be thrown if a different column count is detected.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DetectColumnCountChangesAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.DetectDelimiterAttribute">
<summary>
Detect the delimiter instead of using the delimiter from configuration.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.DetectDelimiterAttribute.DetectDelimiter">
<summary>
Detect the delimiter instead of using the delimiter from configuration.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DetectDelimiterAttribute.#ctor(System.Boolean)">
<summary>
Detect the delimiter instead of using the delimiter from configuration.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DetectDelimiterAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.DetectDelimiterValuesAttribute">
<summary>
The possible delimiter values used when detecting the delimiter.
Default is [",", ";", "|", "\t"].
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.DetectDelimiterValuesAttribute.DetectDelimiterValues">
<summary>
The possible delimiter values used when detecting the delimiter.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DetectDelimiterValuesAttribute.#ctor(System.String)">
<summary>
The possible delimiter values used when detecting the delimiter.
</summary>
<param name="detectDelimiterValues">Whitespace separated list of values.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.DetectDelimiterValuesAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.EncodingAttribute">
<summary>
The encoding used when counting bytes.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.EncodingAttribute.Encoding">
<summary>
Gets the encoding used when counting bytes.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EncodingAttribute.#ctor(System.String)">
<summary>
The encoding used when counting bytes.
</summary>
<param name="name"><inheritdoc cref="M:System.Text.Encoding.GetEncoding(System.String)"/></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EncodingAttribute.#ctor(System.Int32)">
<summary>
The encoding used when counting bytes.
</summary>
<param name="codepage"><inheritdoc cref="M:System.Text.Encoding.GetEncoding(System.Int32)"/></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EncodingAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.EnumIgnoreCaseAttribute">
<summary>
Ignore case when parsing enums.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EnumIgnoreCaseAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc/>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EnumIgnoreCaseAttribute.ApplyTo(CsvHelper.Configuration.MemberReferenceMap)">
<inheritdoc/>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EnumIgnoreCaseAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc/>
</member>
<member name="T:CsvHelper.Configuration.Attributes.EscapeAttribute">
<summary>
The escape character used to escape a quote inside a field.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.EscapeAttribute.Escape">
<summary>
Gets the escape character used to escape a quote inside a field.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EscapeAttribute.#ctor(System.Char)">
<summary>
The escape character used to escape a quote inside a field.
</summary>
<param name="escape">The escape character.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.EscapeAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.ExceptionMessagesContainRawDataAttribute">
<summary>
A value indicating whether exception messages contain raw CSV data.
<see langword="true"/> if exceptions contain raw CSV data, otherwise <see langword="false"/>.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.ExceptionMessagesContainRawDataAttribute.ExceptionMessagesContainRawData">
<summary>
A value indicating whether exception messages contain raw CSV data.
<see langword="true"/> if exceptions contain raw CSV data, otherwise <see langword="false"/>.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.ExceptionMessagesContainRawDataAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether exception messages contain raw CSV data.
<see langword="true"/> if exceptions contain raw CSV data, otherwise <see langword="false"/>.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.ExceptionMessagesContainRawDataAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.FormatAttribute">
<summary>
The string format to be used when type converting.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.FormatAttribute.Formats">
<summary>
Gets the formats.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.FormatAttribute.#ctor(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.Attributes.FormatAttribute.#ctor(System.String[])">
<summary>
The string format to be used when type converting.
</summary>
<param name="formats">The formats.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.FormatAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.FormatAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.HasHeaderRecordAttribute">
<summary>
A value indicating whether the CSV file has a header record.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.HasHeaderRecordAttribute.HasHeaderRecord">
<summary>
Gets a value indicating whether the CSV file has a header record.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HasHeaderRecordAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether the CSV file has a header record.
</summary>
<param name="hasHeaderRecord">A value indicating whether the CSV file has a header record.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HasHeaderRecordAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute">
<summary>
Appends a prefix to the header of each field of the reference member.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.Prefix">
<summary>
Gets the prefix.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.Inherit">
<summary>
Gets a value indicating whether the prefix should inherit parent prefixes.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.#ctor">
<summary>
Appends a prefix to the header of each field of the reference member.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.#ctor(System.String)">
<summary>
Appends a prefix to the header of each field of the reference member.
</summary>
<param name="prefix">The prefix.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.#ctor(System.Boolean)">
<summary>
Appends a prefix to the header of each field of the reference member.
</summary>
<param name="inherit">Inherits parent object prefixes.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.#ctor(System.String,System.Boolean)">
<summary>
Appends a prefix to the header of each field of the reference member.
</summary>
<param name="prefix">The prefix.</param>
<param name="inherit">Inherits parent object prefixes.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.ApplyTo(CsvHelper.Configuration.MemberReferenceMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.HeaderPrefixAttribute.ApplyTo(CsvHelper.Configuration.ParameterReferenceMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.IClassMapper">
<summary>
Defines methods to enable pluggable configuration.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IClassMapper.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<summary>
Applies configuration.
</summary>
<param name="configuration">The configuration to apply to.</param>
</member>
<member name="T:CsvHelper.Configuration.Attributes.IgnoreAttribute">
<summary>
Ignore the member when reading and writing.
If this member has already been mapped as a reference
member, either by a class map, or by automapping, calling
this method will not ignore all the child members down the
tree that have already been mapped.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreAttribute.ApplyTo(CsvHelper.Configuration.MemberReferenceMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.IgnoreBaseAttribute">
<summary>
Ignores base classes when auto mapping.
</summary>
</member>
<member name="T:CsvHelper.Configuration.Attributes.IgnoreBlankLinesAttribute">
<summary>
A value indicating whether blank lines should be ignored when reading.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.IgnoreBlankLinesAttribute.IgnoreBlankLines">
<summary>
Gets a value indicating whether blank lines should be ignored when reading.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreBlankLinesAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether blank lines should be ignored when reading.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreBlankLinesAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.IgnoreReferencesAttribute">
<summary>
Gets a value indicating whether references
should be ignored when auto mapping. <see langword="true"/> to ignore
references, otherwise <see langword="false"/>.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.IgnoreReferencesAttribute.IgnoreReferences">
<summary>
Gets a value indicating whether references
should be ignored when auto mapping. <see langword="true"/> to ignore
references, otherwise <see langword="false"/>.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreReferencesAttribute.#ctor(System.Boolean)">
<summary>
Gets a value indicating whether references
should be ignored when auto mapping. <see langword="true"/> to ignore
references, otherwise <see langword="false"/>.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IgnoreReferencesAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.IMemberMapper">
<summary>
Defines methods to enable pluggable configuration of member mapping.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IMemberMapper.ApplyTo(CsvHelper.Configuration.MemberMap)">
<summary>
Applies configuration to the given <see cref="T:CsvHelper.Configuration.MemberMap"/>.
</summary>
<param name="memberMap">The member map.</param>
</member>
<member name="T:CsvHelper.Configuration.Attributes.IMemberReferenceMapper">
<summary>
Defines methods to enable pluggable configuration of member reference mapping.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IMemberReferenceMapper.ApplyTo(CsvHelper.Configuration.MemberReferenceMap)">
<summary>
Applies configuration to the given <see cref="T:CsvHelper.Configuration.MemberReferenceMap" />.
</summary>
<param name="referenceMap">The reference map.</param>
</member>
<member name="T:CsvHelper.Configuration.Attributes.IncludePrivateMembersAttribute">
<summary>
A value indicating whether private members should be read from and written to.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.IncludePrivateMembersAttribute.IncludePrivateMembers">
<summary>
Gets a value indicating whether private members should be read from and written to.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IncludePrivateMembersAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether private members should be read from and written to.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IncludePrivateMembersAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.IndexAttribute">
<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>
</member>
<member name="P:CsvHelper.Configuration.Attributes.IndexAttribute.Index">
<summary>
Gets the index.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.IndexAttribute.IndexEnd">
<summary>
Gets the index end.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IndexAttribute.#ctor(System.Int32,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.</param>
<param name="indexEnd">The index end.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IndexAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.IndexAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.InjectionCharactersAttribute">
<summary>
Gets the characters that are used for injection attacks.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.InjectionCharactersAttribute.InjectionCharacters">
<summary>
Gets the characters that are used for injection attacks.
Default is '=', '@', '+', '-', '\t', '\r'.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.InjectionCharactersAttribute.#ctor(System.String)">
<summary>
Gets the characters that are used for injection attacks.
</summary>
<param name="injectionCharacters"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.InjectionCharactersAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.InjectionEscapeCharacterAttribute">
<summary>
The character used to escape a detected injection.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.InjectionEscapeCharacterAttribute.InjectionEscapeCharacter">
<summary>
The character used to escape a detected injection.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.InjectionEscapeCharacterAttribute.#ctor(System.Char)">
<summary>
The character used to escape a detected injection.
</summary>
<param name="injectionEscapeCharacter"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.InjectionEscapeCharacterAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.InjectionOptionsAttribute">
<summary>
The injection options.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.InjectionOptionsAttribute.InjectionOptions">
<summary>
The injection options.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.InjectionOptionsAttribute.#ctor(CsvHelper.Configuration.InjectionOptions)">
<summary>
The injection options.
</summary>
<param name="injectionOptions"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.InjectionOptionsAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.IParameterMapper">
<summary>
Defines methods to enable pluggable configuration of parameter mapping.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IParameterMapper.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<summary>
Applies configuration to the given <see cref="T:CsvHelper.Configuration.ParameterMap"/>.
</summary>
<param name="parameterMap">The parameter map.</param>
</member>
<member name="T:CsvHelper.Configuration.Attributes.IParameterReferenceMapper">
<summary>
Defines methods to enable pluggable configuration of parameter reference mapping.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.IParameterReferenceMapper.ApplyTo(CsvHelper.Configuration.ParameterReferenceMap)">
<summary>
Applies configuration to the given <see cref="T:CsvHelper.Configuration.ParameterReferenceMap" />.
</summary>
<param name="referenceMap">The reference map.</param>
</member>
<member name="T:CsvHelper.Configuration.Attributes.LineBreakInQuotedFieldIsBadDataAttribute">
<summary>
A value indicating whether a line break found in a quote field should
be considered bad data. <see langword="true"/> to consider a line break bad data, otherwise <see langword="false"/>.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.LineBreakInQuotedFieldIsBadDataAttribute.LineBreakInQuotedFieldIsBadData">
<summary>
A value indicating whether a line break found in a quote field should
be considered bad data. <see langword="true"/> to consider a line break bad data, otherwise <see langword="false"/>.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.LineBreakInQuotedFieldIsBadDataAttribute.#ctor(System.Boolean)">
<summary>
A value indicating whether a line break found in a quote field should
be considered bad data. <see langword="true"/> to consider a line break bad data, otherwise <see langword="false"/>.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.LineBreakInQuotedFieldIsBadDataAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.MaxFieldSizeAttribute">
<summary>
Gets or sets the maximum size of a field.
Defaults to 0, indicating maximum field size is not checked.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.MaxFieldSizeAttribute.MaxFieldSize">
<summary>
Gets or sets the maximum size of a field.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.MaxFieldSizeAttribute.#ctor(System.Double)">
<summary>
Gets or sets the maximum size of a field.
</summary>
<param name="maxFieldSize"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.MaxFieldSizeAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.MemberTypesAttribute">
<summary>
The member types that are used when auto mapping.
MemberTypes are flags, so you can choose more than one.
Default is Properties.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.MemberTypesAttribute.MemberTypes">
<summary>
The member types that are used when auto mapping.
MemberTypes are flags, so you can choose more than one.
Default is Properties.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.MemberTypesAttribute.#ctor(CsvHelper.Configuration.MemberTypes)">
<summary>
The member types that are used when auto mapping.
MemberTypes are flags, so you can choose more than one.
Default is Properties.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.MemberTypesAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.ModeAttribute">
<summary>
The mode.
See <see cref="T:CsvHelper.CsvMode"/> for more details.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.ModeAttribute.Mode">
<summary>
The mode.
See <see cref="T:CsvHelper.CsvMode"/> for more details.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.ModeAttribute.#ctor(CsvHelper.CsvMode)">
<summary>
The mode.
See <see cref="T:CsvHelper.CsvMode"/> for more details.
</summary>
<param name="mode"></param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.ModeAttribute.ApplyTo(CsvHelper.Configuration.CsvConfiguration)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.NameAttribute">
<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>
</member>
<member name="P:CsvHelper.Configuration.Attributes.NameAttribute.Names">
<summary>
Gets the names.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameAttribute.#ctor(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="name">The name</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameAttribute.#ctor(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 names.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.NameIndexAttribute">
<summary>
When reading, is used to get the
index of the name used when there
are multiple names that are the same.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.NameIndexAttribute.NameIndex">
<summary>
The name index.
</summary>
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameIndexAttribute.#ctor(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="nameIndex">The name index.</param>
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameIndexAttribute.ApplyTo(CsvHelper.Configuration.MemberMap)">
<inheritdoc />
</member>
<member name="M:CsvHelper.Configuration.Attributes.NameIndexAttribute.ApplyTo(CsvHelper.Configuration.ParameterMap)">
<inheritdoc />
</member>
<member name="T:CsvHelper.Configuration.Attributes.NewLineAttribute">
<summary>
The newline string to use. Default is \r\n (CRLF).
When writing, this value is always used.
When reading, this value is only used if explicitly set.
If not set, the parser uses one of \r\n, \r, or \n.
</summary>
</member>
<member name="P:CsvHelper.Configuration.Attributes.NewLineAttribute.NewLine">
The newline string to use. Default is \r\n (CRLF).
When writing, this value is always used.
When reading, this value is only used if explicitly set.
If not set, the parser uses one of \r\n, \r, or \n.
</member>
<member name="M:CsvHelper.Configuration.Attributes.NewLineAttribute.#ctor(System.String)">
The newline string to use. Default is \r\n (CRLF).
When writing, this value is always used.