forked from LogExperts/LogExpert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLumenWorks.Framework.IO.XML
1538 lines (1538 loc) · 81.4 KB
/
LumenWorks.Framework.IO.XML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>LumenWorks.Framework.IO</name>
</assembly>
<members>
<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._trimSpaces">
<summary>
Indicates if spaces at the start and end of a field are 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,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>
<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>
<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,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="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.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>
<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: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.TrimSpaces">
<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.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="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="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)">