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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>LumenWorks.Framework.IO</name>
</assembly>
<members>
<member name="T:LumenWorks.Framework.IO.Csv.CachedCsvReader">
<summary>
Represents a reader that provides fast, cached, dynamic access to CSV data.
</summary>
<remarks>The number of records is limited to <see cref="F:System.Int32.MaxValue"/> - 1.</remarks>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.CsvReader">
<summary>
Represents a reader that provides fast, non-cached, forward-only access to CSV data.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DefaultBufferSize">
<summary>
Defines the default buffer size.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DefaultDelimiter">
<summary>
Defines the default delimiter character separating each field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DefaultQuote">
<summary>
Defines the default quote character wrapping every field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DefaultEscape">
<summary>
Defines the default escape character letting insert quotation characters inside a quoted field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DefaultComment">
<summary>
Defines the default comment character indicating that a line is commented out.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._fieldHeaderComparer">
<summary>
Contains the field header comparer.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._reader">
<summary>
Contains the <see cref="T:TextReader"/> pointing to the CSV file.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._bufferSize">
<summary>
Contains the buffer size.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._comment">
<summary>
Contains the comment character indicating that a line is commented out.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._escape">
<summary>
Contains the escape character letting insert quotation characters inside a quoted field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._delimiter">
<summary>
Contains the delimiter character separating each field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._quote">
<summary>
Contains the quotation character wrapping every field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._trimmingOptions">
<summary>
Determines which values should be trimmed.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._hasHeaders">
<summary>
Indicates if field names are located on the first non commented line.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._defaultParseErrorAction">
<summary>
Contains the default action to take when a parsing error has occured.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._missingFieldAction">
<summary>
Contains the action to take when a field is missing.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._supportsMultiline">
<summary>
Indicates if the reader supports multiline.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._skipEmptyLines">
<summary>
Indicates if the reader will skip empty lines.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._initialized">
<summary>
Indicates if the class is initialized.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._fieldHeaders">
<summary>
Contains the field headers.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._fieldHeaderIndexes">
<summary>
Contains the dictionary of field indexes by header. The key is the field name and the value is its index.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._currentRecordIndex">
<summary>
Contains the current record index in the CSV file.
A value of <see cref="M:Int32.MinValue"/> means that the reader has not been initialized yet.
Otherwise, a negative value means that no record has been read yet.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._nextFieldStart">
<summary>
Contains the starting position of the next unread field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._nextFieldIndex">
<summary>
Contains the index of the next unread field.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._fields">
<summary>
Contains the array of the field values for the current record.
A null value indicates that the field have not been parsed.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._fieldCount">
<summary>
Contains the maximum number of fields to retrieve for each record.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._buffer">
<summary>
Contains the read buffer.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._bufferLength">
<summary>
Contains the current read buffer length.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._eof">
<summary>
Indicates if the end of the reader has been reached.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._eol">
<summary>
Indicates if the last read operation reached an EOL character.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._firstRecordInCache">
<summary>
Indicates if the first record is in cache.
This can happen when initializing a reader with no headers
because one record must be read to get the field count automatically
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._missingFieldFlag">
<summary>
Indicates if one or more field are missing for the current record.
Resets after each successful record read.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._parseErrorFlag">
<summary>
Indicates if a parse error occured for the current record.
Resets after each successful record read.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.#ctor(System.IO.TextReader,System.Boolean)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="bufferSize">The buffer size in bytes.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char,System.Int32)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<param name="bufferSize">The buffer size in bytes.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char,System.Char,System.Char,System.Char,LumenWorks.Framework.IO.Csv.ValueTrimmingOptions)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<param name="quote">The quotation character wrapping every field (default is ''').</param>
<param name="escape">
The escape character letting insert quotation characters inside a quoted field (default is '\').
If no escape character, set to '\0' to gain some performance.
</param>
<param name="comment">The comment character indicating that a line is commented out (default is '#').</param>
<param name="trimmingOptions">Determines which values should be trimmed.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char,System.Char,System.Char,System.Char,LumenWorks.Framework.IO.Csv.ValueTrimmingOptions,System.Int32)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<param name="quote">The quotation character wrapping every field (default is ''').</param>
<param name="escape">
The escape character letting insert quotation characters inside a quoted field (default is '\').
If no escape character, set to '\0' to gain some performance.
</param>
<param name="comment">The comment character indicating that a line is commented out (default is '#').</param>
<param name="trimmingOptions">Determines which values should be trimmed.</param>
<param name="bufferSize">The buffer size in bytes.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="bufferSize"/> must be 1 or more.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.OnParseError(LumenWorks.Framework.IO.Csv.ParseErrorEventArgs)">
<summary>
Raises the <see cref="M:ParseError"/> event.
</summary>
<param name="e">The <see cref="T:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs"/> that contains the event data.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.GetFieldHeaders">
<summary>
Gets the field headers.
</summary>
<returns>The field headers or an empty array if headers are not supported.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.EnsureInitialize">
<summary>
Ensures that the reader is initialized.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.GetFieldIndex(System.String)">
<summary>
Gets the field index for the provided header.
</summary>
<param name="header">The header to look for.</param>
<returns>The field index for the provided header. -1 if not found.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.CopyCurrentRecordTo(System.String[])">
<summary>
Copies the field array of the current record to a one-dimensional array, starting at the beginning of the target array.
</summary>
<param name="array"> The one-dimensional <see cref="T:Array"/> that is the destination of the fields of the current record.</param>
<exception cref="T:ArgumentNullException">
<paramref name="array"/> is <see langword="null"/>.
</exception>
<exception cref="T:System.ArgumentException">
The number of fields in the record is greater than the available space from <paramref name="index"/> to the end of <paramref name="array"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.CopyCurrentRecordTo(System.String[],System.Int32)">
<summary>
Copies the field array of the current record to a one-dimensional array, starting at the beginning of the target array.
</summary>
<param name="array"> The one-dimensional <see cref="T:Array"/> that is the destination of the fields of the current record.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<exception cref="T:ArgumentNullException">
<paramref name="array"/> is <see langword="null"/>.
</exception>
<exception cref="T:ArgumentOutOfRangeException">
<paramref name="index"/> is les than zero or is equal to or greater than the length <paramref name="array"/>.
</exception>
<exception cref="T:System.InvalidOperationException">
No current record.
</exception>
<exception cref="T:System.ArgumentException">
The number of fields in the record is greater than the available space from <paramref name="index"/> to the end of <paramref name="array"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.GetCurrentRawData">
<summary>
Gets the current raw CSV data.
</summary>
<remarks>Used for exception handling purpose.</remarks>
<returns>The current raw CSV data.</returns>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.IsWhiteSpace(System.Char)">
<summary>
Indicates whether the specified Unicode character is categorized as white space.
</summary>
<param name="c">A Unicode character.</param>
<returns><see langword="true"/> if <paramref name="c"/> is white space; otherwise, <see langword="false"/>.</returns>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.MoveTo(System.Int64)">
<summary>
Moves to the specified record index.
</summary>
<param name="record">The record index.</param>
<returns><c>true</c> if the operation was successful; otherwise, <c>false</c>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.ParseNewLine(System.Int32@)">
<summary>
Parses a new line delimiter.
</summary>
<param name="pos">The starting position of the parsing. Will contain the resulting end position.</param>
<returns><see langword="true"/> if a new line delimiter was found; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.IsNewLine(System.Int32)">
<summary>
Determines whether the character at the specified position is a new line delimiter.
</summary>
<param name="pos">The position of the character to verify.</param>
<returns>
<see langword="true"/> if the character at the specified position is a new line delimiter; otherwise, <see langword="false"/>.
</returns>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.ReadBuffer">
<summary>
Fills the buffer with data from the reader.
</summary>
<returns><see langword="true"/> if data was successfully read; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.ReadField(System.Int32,System.Boolean,System.Boolean)">
<summary>
Reads the field at the specified index.
Any unread fields with an inferior index will also be read as part of the required parsing.
</summary>
<param name="field">The field index.</param>
<param name="initializing">Indicates if the reader is currently initializing.</param>
<param name="discardValue">Indicates if the value(s) are discarded.</param>
<returns>
The field at the specified index.
A <see langword="null"/> indicates that an error occured or that the last field has been reached during initialization.
</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="field"/> is out of range.
</exception>
<exception cref="T:System.InvalidOperationException">
There is no current record.
</exception>
<exception cref="T:LumenWorks.Framework.IO.Csv.MissingFieldCsvException">
The CSV data appears to be missing a field.
</exception>
<exception cref="T:LumenWorks.Framework.IO.Csv.MalformedCsvException">
The CSV data appears to be malformed.
</exception>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.ReadNextRecord">
<summary>
Reads the next record.
</summary>
<returns><see langword="true"/> if a record has been successfully reads; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.ReadNextRecord(System.Boolean,System.Boolean)">
<summary>
Reads the next record.
</summary>
<param name="onlyReadHeaders">
Indicates if the reader will proceed to the next record after having read headers.
<see langword="true"/> if it stops after having read headers; otherwise, <see langword="false"/>.
</param>
<param name="skipToNextLine">
Indicates if the reader will skip directly to the next line without parsing the current one.
To be used when an error occurs.
</param>
<returns><see langword="true"/> if a record has been successfully reads; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.SkipEmptyAndCommentedLines(System.Int32@)">
<summary>
Skips empty and commented lines.
If the end of the buffer is reached, its content be discarded and filled again from the reader.
</summary>
<param name="pos">
The position in the buffer where to start parsing.
Will contains the resulting position after the operation.
</param>
<returns><see langword="true"/> if the end of the reader has not been reached; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.DoSkipEmptyAndCommentedLines(System.Int32@)">
<summary>
<para>Worker method.</para>
<para>Skips empty and commented lines.</para>
</summary>
<param name="pos">
The position in the buffer where to start parsing.
Will contains the resulting position after the operation.
</param>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.SkipWhiteSpaces(System.Int32@)">
<summary>
Skips whitespace characters.
</summary>
<param name="pos">The starting position of the parsing. Will contain the resulting end position.</param>
<returns><see langword="true"/> if the end of the reader has not been reached; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.SkipToNextLine(System.Int32@)">
<summary>
Skips ahead to the next NewLine character.
If the end of the buffer is reached, its content be discarded and filled again from the reader.
</summary>
<param name="pos">
The position in the buffer where to start parsing.
Will contains the resulting position after the operation.
</param>
<returns><see langword="true"/> if the end of the reader has not been reached; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.HandleParseError(LumenWorks.Framework.IO.Csv.MalformedCsvException,System.Int32@)">
<summary>
Handles a parsing error.
</summary>
<param name="error">The parsing error that occured.</param>
<param name="pos">The current position in the buffer.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="error"/> is <see langword="null"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.HandleMissingField(System.String,System.Int32,System.Int32@)">
<summary>
Handles a missing field error.
</summary>
<param name="value">The partially parsed value, if available.</param>
<param name="fieldIndex">The missing field index.</param>
<param name="currentPosition">The current position in the raw data.</param>
<returns>
The resulting value according to <see cref="M:MissingFieldAction"/>.
If the action is set to <see cref="T:MissingFieldAction.TreatAsParseError"/>,
then the parse error will be handled according to <see cref="P:LumenWorks.Framework.IO.Csv.CsvReader.DefaultParseErrorAction"/>.
</returns>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.ValidateDataReader(LumenWorks.Framework.IO.Csv.CsvReader.DataReaderValidations)">
<summary>
Validates the state of the data reader.
</summary>
<param name="validations">The validations to accomplish.</param>
<exception cref="T:System.InvalidOperationException">
No current record.
</exception>
<exception cref="T:System.InvalidOperationException">
This operation is invalid when the reader is closed.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.CopyFieldToArray(System.Int32,System.Int64,System.Array,System.Int32,System.Int32)">
<summary>
Copy the value of the specified field to an array.
</summary>
<param name="field">The index of the field.</param>
<param name="fieldOffset">The offset in the field value.</param>
<param name="destinationArray">The destination array where the field value will be copied.</param>
<param name="destinationOffset">The destination array offset.</param>
<param name="length">The number of characters to copy from the field value.</param>
<returns></returns>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.GetEnumerator">
<summary>
Returns an <see cref="T:RecordEnumerator"/> that can iterate through CSV records.
</summary>
<returns>An <see cref="T:RecordEnumerator"/> that can iterate through CSV records.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.System#Collections#Generic#IEnumerable{System#String[]}#GetEnumerator">
<summary>
Returns an <see cref="T:System.Collections.Generics.IEnumerator"/> that can iterate through CSV records.
</summary>
<returns>An <see cref="T:System.Collections.Generics.IEnumerator"/> that can iterate through CSV records.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an <see cref="T:System.Collections.IEnumerator"/> that can iterate through CSV records.
</summary>
<returns>An <see cref="T:System.Collections.IEnumerator"/> that can iterate through CSV records.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._isDisposed">
<summary>
Contains the disposed status flag.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader._lock">
<summary>
Contains the locking object for multi-threading purpose.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.OnDisposed(System.EventArgs)">
<summary>
Raises the <see cref="M:Disposed"/> event.
</summary>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.CheckDisposed">
<summary>
Checks if the instance has been disposed of, and if it has, throws an <see cref="T:System.ComponentModel.ObjectDisposedException"/>; otherwise, does nothing.
</summary>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
<remarks>
Derived classes should call this method at the start of all methods and properties that should not be accessed after a call to <see cref="M:Dispose()"/>.
</remarks>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.Dispose">
<summary>
Releases all resources used by the instance.
</summary>
<remarks>
Calls <see cref="M:Dispose(Boolean)"/> with the disposing parameter set to <see langword="true"/> to free unmanaged and managed resources.
</remarks>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by this instance and optionally releases the managed resources.
</summary>
<param name="disposing">
<see langword="true"/> to release both managed and unmanaged resources; <see langword="false"/> to release only unmanaged resources.
</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.Finalize">
<summary>
Releases unmanaged resources and performs other cleanup operations before the instance is reclaimed by garbage collection.
</summary>
</member>
<member name="E:LumenWorks.Framework.IO.Csv.CsvReader.ParseError">
<summary>
Occurs when there is an error while parsing the CSV stream.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Comment">
<summary>
Gets the comment character indicating that a line is commented out.
</summary>
<value>The comment character indicating that a line is commented out.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Escape">
<summary>
Gets the escape character letting insert quotation characters inside a quoted field.
</summary>
<value>The escape character letting insert quotation characters inside a quoted field.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Delimiter">
<summary>
Gets the delimiter character separating each field.
</summary>
<value>The delimiter character separating each field.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Quote">
<summary>
Gets the quotation character wrapping every field.
</summary>
<value>The quotation character wrapping every field.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.HasHeaders">
<summary>
Indicates if field names are located on the first non commented line.
</summary>
<value><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.TrimmingOption">
<summary>
Indicates if spaces at the start and end of a field are trimmed.
</summary>
<value><see langword="true"/> if spaces at the start and end of a field are trimmed, otherwise, <see langword="false"/>.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.BufferSize">
<summary>
Gets the buffer size.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.DefaultParseErrorAction">
<summary>
Gets or sets the default action to take when a parsing error has occured.
</summary>
<value>The default action to take when a parsing error has occured.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.MissingFieldAction">
<summary>
Gets or sets the action to take when a field is missing.
</summary>
<value>The action to take when a field is missing.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.SupportsMultiline">
<summary>
Gets or sets a value indicating if the reader supports multiline fields.
</summary>
<value>A value indicating if the reader supports multiline field.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.SkipEmptyLines">
<summary>
Gets or sets a value indicating if the reader will skip empty lines.
</summary>
<value>A value indicating if the reader will skip empty lines.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.DefaultHeaderName">
<summary>
Gets or sets the default header name when it is an empty string or only whitespaces.
The header index will be appended to the specified name.
</summary>
<value>The default header name when it is an empty string or only whitespaces.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.FieldCount">
<summary>
Gets the maximum number of fields to retrieve for each record.
</summary>
<value>The maximum number of fields to retrieve for each record.</value>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.EndOfStream">
<summary>
Gets a value that indicates whether the current stream position is at the end of the stream.
</summary>
<value><see langword="true"/> if the current stream position is at the end of the stream; otherwise <see langword="false"/>.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.CurrentRecordIndex">
<summary>
Gets the current record index in the CSV file.
</summary>
<value>The current record index in the CSV file.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.MissingFieldFlag">
<summary>
Indicates if one or more field are missing for the current record.
Resets after each successful record read.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.ParseErrorFlag">
<summary>
Indicates if a parse error occured for the current record.
Resets after each successful record read.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Item(System.Int32,System.String)">
<summary>
Gets the field with the specified name and record position. <see cref="M:hasHeaders"/> must be <see langword="true"/>.
</summary>
<value>
The field with the specified name and record position.
</value>
<exception cref="T:ArgumentNullException">
<paramref name="field"/> is <see langword="null"/> or an empty string.
</exception>
<exception cref="T:InvalidOperationException">
The CSV does not have headers (<see cref="M:HasHeaders"/> property is <see langword="false"/>).
</exception>
<exception cref="T:ArgumentException">
<paramref name="field"/> not found.
</exception>
<exception cref="T:ArgumentOutOfRangeException">
Record index must be > 0.
</exception>
<exception cref="T:InvalidOperationException">
Cannot move to a previous record in forward-only mode.
</exception>
<exception cref="T:EndOfStreamException">
Cannot read record at <paramref name="record"/>.
</exception>
<exception cref="T:MalformedCsvException">
The CSV appears to be corrupt at the current position.
</exception>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Item(System.Int32,System.Int32)">
<summary>
Gets the field at the specified index and record position.
</summary>
<value>
The field at the specified index and record position.
A <see langword="null"/> is returned if the field cannot be found for the record.
</value>
<exception cref="T:ArgumentOutOfRangeException">
<paramref name="field"/> must be included in [0, <see cref="M:FieldCount"/>[.
</exception>
<exception cref="T:ArgumentOutOfRangeException">
Record index must be > 0.
</exception>
<exception cref="T:InvalidOperationException">
Cannot move to a previous record in forward-only mode.
</exception>
<exception cref="T:EndOfStreamException">
Cannot read record at <paramref name="record"/>.
</exception>
<exception cref="T:MalformedCsvException">
The CSV appears to be corrupt at the current position.
</exception>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Item(System.String)">
<summary>
Gets the field with the specified name. <see cref="M:hasHeaders"/> must be <see langword="true"/>.
</summary>
<value>
The field with the specified name.
</value>
<exception cref="T:ArgumentNullException">
<paramref name="field"/> is <see langword="null"/> or an empty string.
</exception>
<exception cref="T:InvalidOperationException">
The CSV does not have headers (<see cref="M:HasHeaders"/> property is <see langword="false"/>).
</exception>
<exception cref="T:ArgumentException">
<paramref name="field"/> not found.
</exception>
<exception cref="T:MalformedCsvException">
The CSV appears to be corrupt at the current position.
</exception>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.Item(System.Int32)">
<summary>
Gets the field at the specified index.
</summary>
<value>The field at the specified index.</value>
<exception cref="T:ArgumentOutOfRangeException">
<paramref name="field"/> must be included in [0, <see cref="M:FieldCount"/>[.
</exception>
<exception cref="T:InvalidOperationException">
No record read yet. Call ReadLine() first.
</exception>
<exception cref="T:MalformedCsvException">
The CSV appears to be corrupt at the current position.
</exception>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="E:LumenWorks.Framework.IO.Csv.CsvReader.Disposed">
<summary>
Occurs when the instance is disposed of.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.IsDisposed">
<summary>
Gets a value indicating whether the instance has been disposed of.
</summary>
<value>
<see langword="true"/> if the instance has been disposed of; otherwise, <see langword="false"/>.
</value>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator">
<summary>
Supports a simple iteration over the records of a <see cref="T:CsvReader"/>.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator._reader">
<summary>
Contains the enumerated <see cref="T:CsvReader"/>.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator._current">
<summary>
Contains the current record.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator._currentRecordIndex">
<summary>
Contains the current record index.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator.#ctor(LumenWorks.Framework.IO.Csv.CsvReader)">
<summary>
Initializes a new instance of the <see cref="T:RecordEnumerator"/> class.
</summary>
<param name="reader">The <see cref="T:CsvReader"/> to iterate over.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator.MoveNext">
<summary>
Advances the enumerator to the next record of the CSV.
</summary>
<returns><see langword="true"/> if the enumerator was successfully advanced to the next record, <see langword="false"/> if the enumerator has passed the end of the CSV.</returns>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the first record in the CSV.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator.Current">
<summary>
Gets the current record.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CsvReader.RecordEnumerator.System#Collections#IEnumerator#Current">
<summary>
Gets the current record.
</summary>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.CsvReader.DataReaderValidations">
<summary>
Defines the data reader validations.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DataReaderValidations.None">
<summary>
No validation.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DataReaderValidations.IsInitialized">
<summary>
Validate that the data reader is initialized.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CsvReader.DataReaderValidations.IsNotClosed">
<summary>
Validate that the data reader is not closed.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader._records">
<summary>
Contains the cached records.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader._currentRecordIndex">
<summary>
Contains the current record index (inside the cached records array).
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader._readingStream">
<summary>
Indicates if a new record is being read from the CSV stream.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader._bindingList">
<summary>
Contains the binding list linked to this reader.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.#ctor(System.IO.TextReader,System.Boolean)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="bufferSize">The buffer size in bytes.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char,System.Int32)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<param name="bufferSize">The buffer size in bytes.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char,System.Char,System.Char,System.Char,LumenWorks.Framework.IO.Csv.ValueTrimmingOptions)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<param name="quote">The quotation character wrapping every field (default is ''').</param>
<param name="escape">
The escape character letting insert quotation characters inside a quoted field (default is '\').
If no escape character, set to '\0' to gain some performance.
</param>
<param name="comment">The comment character indicating that a line is commented out (default is '#').</param>
<param name="trimmingOptions">Determines how values should be trimmed.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:ArgumentException">
Cannot read from <paramref name="reader"/>.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.#ctor(System.IO.TextReader,System.Boolean,System.Char,System.Char,System.Char,System.Char,LumenWorks.Framework.IO.Csv.ValueTrimmingOptions,System.Int32)">
<summary>
Initializes a new instance of the CsvReader class.
</summary>
<param name="reader">A <see cref="T:TextReader"/> pointing to the CSV file.</param>
<param name="hasHeaders"><see langword="true"/> if field names are located on the first non commented line, otherwise, <see langword="false"/>.</param>
<param name="delimiter">The delimiter character separating each field (default is ',').</param>
<param name="quote">The quotation character wrapping every field (default is ''').</param>
<param name="escape">
The escape character letting insert quotation characters inside a quoted field (default is '\').
If no escape character, set to '\0' to gain some performance.
</param>
<param name="comment">The comment character indicating that a line is commented out (default is '#').</param>
<param name="trimSpaces"><see langword="true"/> if spaces at the start and end of a field are trimmed, otherwise, <see langword="false"/>. Default is <see langword="true"/>.</param>
<param name="bufferSize">The buffer size in bytes.</param>
<exception cref="T:ArgumentNullException">
<paramref name="reader"/> is a <see langword="null"/>.
</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="bufferSize"/> must be 1 or more.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.ReadToEnd">
<summary>
Reads the CSV stream from the current position to the end of the stream.
</summary>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.ReadNextRecord(System.Boolean,System.Boolean)">
<summary>
Reads the next record.
</summary>
<param name="onlyReadHeaders">
Indicates if the reader will proceed to the next record after having read headers.
<see langword="true"/> if it stops after having read headers; otherwise, <see langword="false"/>.
</param>
<param name="skipToNextLine">
Indicates if the reader will skip directly to the next line without parsing the current one.
To be used when an error occurs.
</param>
<returns><see langword="true"/> if a record has been successfully reads; otherwise, <see langword="false"/>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.MoveToStart">
<summary>
Moves before the first record.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.MoveToLastCachedRecord">
<summary>
Moves to the last record read so far.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.MoveTo(System.Int64)">
<summary>
Moves to the specified record index.
</summary>
<param name="record">The record index.</param>
<returns><c>true</c> if the operation was successful; otherwise, <c>false</c>.</returns>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CachedCsvReader.CurrentRecordIndex">
<summary>
Gets the current record index in the CSV file.
</summary>
<value>The current record index in the CSV file.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CachedCsvReader.EndOfStream">
<summary>
Gets a value that indicates whether the current stream position is at the end of the stream.
</summary>
<value><see langword="true"/> if the current stream position is at the end of the stream; otherwise <see langword="false"/>.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CachedCsvReader.Item(System.Int32)">
<summary>
Gets the field at the specified index.
</summary>
<value>The field at the specified index.</value>
<exception cref="T:ArgumentOutOfRangeException">
<paramref name="field"/> must be included in [0, <see cref="M:FieldCount"/>[.
</exception>
<exception cref="T:InvalidOperationException">
No record read yet. Call ReadLine() first.
</exception>
<exception cref="T:LumenWorks.Framework.IO.Csv.MissingFieldCsvException">
The CSV data appears to be missing a field.
</exception>
<exception cref="T:MalformedCsvException">
The CSV appears to be corrupt at the current position.
</exception>
<exception cref="T:System.ComponentModel.ObjectDisposedException">
The instance has been disposed of.
</exception>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList">
<summary>
Represents a binding list wrapper for a CSV reader.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList._csv">
<summary>
Contains the linked CSV reader.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList._count">
<summary>
Contains the cached record count.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList._properties">
<summary>
Contains the cached property descriptors.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList._sort">
<summary>
Contains the current sort property.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList._direction">
<summary>
Contains the current sort direction.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvBindingList.#ctor(LumenWorks.Framework.IO.Csv.CachedCsvReader)">
<summary>
Initializes a new instance of the CsvBindingList class.
</summary>
<param name="csv"></param>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvRecordComparer">
<summary>
Represents a CSV record comparer.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvRecordComparer._field">
<summary>
Contains the field index of the values to compare.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvRecordComparer._direction">
<summary>
Contains the sort direction.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvRecordComparer.#ctor(System.Int32,System.ComponentModel.ListSortDirection)">
<summary>
Initializes a new instance of the CsvRecordComparer class.
</summary>
<param name="field">The field index of the values to compare.</param>
<param name="direction">The sort direction.</param>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvPropertyDescriptor">
<summary>
Represents a CSV field property descriptor.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvPropertyDescriptor._index">
<summary>
Contains the field index.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvPropertyDescriptor.#ctor(System.String,System.Int32)">
<summary>
Initializes a new instance of the CsvPropertyDescriptor class.
</summary>
<param name="fieldName">The field name.</param>
<param name="index">The field index.</param>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.CachedCsvReader.CsvPropertyDescriptor.Index">
<summary>
Gets the field index.
</summary>
<value>The field index.</value>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.MalformedCsvException">
<summary>
Represents the exception that is thrown when a CSV file is malformed.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MalformedCsvException._message">
<summary>
Contains the message that describes the error.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MalformedCsvException._rawData">
<summary>
Contains the raw data when the error occured.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MalformedCsvException._currentFieldIndex">
<summary>
Contains the current field index.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MalformedCsvException._currentRecordIndex">
<summary>
Contains the current record index.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MalformedCsvException._currentPosition">
<summary>
Contains the current position in the raw data.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.#ctor">
<summary>
Initializes a new instance of the MalformedCsvException class.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.#ctor(System.String)">
<summary>
Initializes a new instance of the MalformedCsvException class.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the MalformedCsvException class.
</summary>
<param name="message">The message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.#ctor(System.String,System.Int32,System.Int64,System.Int32)">
<summary>
Initializes a new instance of the MalformedCsvException class.
</summary>
<param name="rawData">The raw data when the error occured.</param>
<param name="currentPosition">The current position in the raw data.</param>
<param name="currentRecordIndex">The current record index.</param>
<param name="currentFieldIndex">The current field index.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.#ctor(System.String,System.Int32,System.Int64,System.Int32,System.Exception)">
<summary>
Initializes a new instance of the MalformedCsvException class.
</summary>
<param name="rawData">The raw data when the error occured.</param>
<param name="currentPosition">The current position in the raw data.</param>
<param name="currentRecordIndex">The current record index.</param>
<param name="currentFieldIndex">The current field index.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the MalformedCsvException class with serialized data.
</summary>
<param name="info">The <see cref="T:SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MalformedCsvException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
When overridden in a derived class, sets the <see cref="T:SerializationInfo"/> with information about the exception.
</summary>
<param name="info">The <see cref="T:SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.MalformedCsvException.RawData">
<summary>
Gets the raw data when the error occured.
</summary>
<value>The raw data when the error occured.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.MalformedCsvException.CurrentPosition">
<summary>
Gets the current position in the raw data.
</summary>
<value>The current position in the raw data.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.MalformedCsvException.CurrentRecordIndex">
<summary>
Gets the current record index.
</summary>
<value>The current record index.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.MalformedCsvException.CurrentFieldIndex">
<summary>
Gets the current field index.
</summary>
<value>The current record index.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.MalformedCsvException.Message">
<summary>
Gets a message that describes the current exception.
</summary>
<value>A message that describes the current exception.</value>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.MissingFieldCsvException">
<summary>
Represents the exception that is thrown when a there is a missing field in a record of the CSV file.
</summary>
<remarks>
MissingFieldException would have been a better name, but there is already a <see cref="T:System.MissingFieldException"/>.
</remarks>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MissingFieldCsvException.#ctor">
<summary>
Initializes a new instance of the MissingFieldCsvException class.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MissingFieldCsvException.#ctor(System.String)">
<summary>
Initializes a new instance of the MissingFieldCsvException class.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MissingFieldCsvException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the MissingFieldCsvException class.
</summary>
<param name="message">The message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MissingFieldCsvException.#ctor(System.String,System.Int32,System.Int64,System.Int32)">
<summary>
Initializes a new instance of the MissingFieldCsvException class.
</summary>
<param name="rawData">The raw data when the error occured.</param>
<param name="currentPosition">The current position in the raw data.</param>
<param name="currentRecordIndex">The current record index.</param>
<param name="currentFieldIndex">The current field index.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MissingFieldCsvException.#ctor(System.String,System.Int32,System.Int64,System.Int32,System.Exception)">
<summary>
Initializes a new instance of the MissingFieldCsvException class.
</summary>
<param name="rawData">The raw data when the error occured.</param>
<param name="currentPosition">The current position in the raw data.</param>
<param name="currentRecordIndex">The current record index.</param>
<param name="currentFieldIndex">The current field index.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.MissingFieldCsvException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the MissingFieldCsvException class with serialized data.
</summary>
<param name="info">The <see cref="T:SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
<param name="context">The <see cref="T:StreamingContext"/> that contains contextual information about the source or destination.</param>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.ParseErrorAction">
<summary>
Specifies the action to take when a parsing error has occured.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.ParseErrorAction.RaiseEvent">
<summary>
Raises the <see cref="M:CsvReader.ParseError"/> event.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.ParseErrorAction.AdvanceToNextLine">
<summary>
Tries to advance to next line.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.ParseErrorAction.ThrowException">
<summary>
Throws an exception.
</summary>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.BufferSizeTooSmall">
<summary>
Looks up a localized string similar to Buffer size must be 1 or more..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.CannotMovePreviousRecordInForwardOnly">
<summary>
Looks up a localized string similar to Cannot move to a previous record in forward-only mode..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.CannotReadRecordAtIndex">
<summary>
Looks up a localized string similar to Cannot read record at index '{0}'..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.EnumerationFinishedOrNotStarted">
<summary>
Looks up a localized string similar to Enumeration has either not started or has already finished..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.EnumerationVersionCheckFailed">
<summary>
Looks up a localized string similar to Collection was modified; enumeration operation may not execute..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.FieldHeaderNotFound">
<summary>
Looks up a localized string similar to '{0}' field header not found..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.FieldIndexOutOfRange">
<summary>
Looks up a localized string similar to Field index must be included in [0, FieldCount[. Specified field index was : '{0}'..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.MalformedCsvException">
<summary>
Looks up a localized string similar to The CSV appears to be corrupt near record '{0}' field '{1} at position '{2}'. Current raw data : '{3}'..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.MissingFieldActionNotSupported">
<summary>
Looks up a localized string similar to '{0}' is not a supported missing field action..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.NoCurrentRecord">
<summary>
Looks up a localized string similar to No current record..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.NoHeaders">
<summary>
Looks up a localized string similar to The CSV does not have headers (CsvReader.HasHeaders property is false)..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.NotEnoughSpaceInArray">
<summary>
Looks up a localized string similar to The number of fields in the record is greater than the available space from index to the end of the destination array..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.ParseErrorActionInvalidInsideParseErrorEvent">
<summary>
Looks up a localized string similar to '{0}' is not a valid ParseErrorAction while inside a ParseError event..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.ParseErrorActionNotSupported">
<summary>
Looks up a localized string similar to '{0}' is not a supported ParseErrorAction..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.ReaderClosed">
<summary>
Looks up a localized string similar to This operation is invalid when the reader is closed..
</summary>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.Resources.ExceptionMessage.RecordIndexLessThanZero">
<summary>
Looks up a localized string similar to Record index must be 0 or more..
</summary>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.MissingFieldAction">
<summary>
Specifies the action to take when a field is missing.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MissingFieldAction.ParseError">
<summary>
Treat as a parsing error.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MissingFieldAction.ReplaceByEmpty">
<summary>
Replaces by an empty value.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.MissingFieldAction.ReplaceByNull">
<summary>
Replaces by a null value (<see langword="null"/>).
</summary>
</member>
<member name="T:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs">
<summary>
Provides data for the <see cref="M:CsvReader.ParseError"/> event.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs._error">
<summary>
Contains the error that occured.
</summary>
</member>
<member name="F:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs._action">
<summary>
Contains the action to take.
</summary>
</member>
<member name="M:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs.#ctor(LumenWorks.Framework.IO.Csv.MalformedCsvException,LumenWorks.Framework.IO.Csv.ParseErrorAction)">
<summary>
Initializes a new instance of the ParseErrorEventArgs class.
</summary>
<param name="error">The error that occured.</param>
<param name="defaultAction">The default action to take.</param>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs.Error">
<summary>
Gets the error that occured.
</summary>
<value>The error that occured.</value>
</member>
<member name="P:LumenWorks.Framework.IO.Csv.ParseErrorEventArgs.Action">
<summary>
Gets or sets the action to take.
</summary>
<value>The action to take.</value>
</member>
</members>
</doc>
|