ExcelDataReader.xml 75.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 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 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ExcelDataReader</name>
    </assembly>
    <members>
        <member name="T:ExcelDataReader.CellRange">
            <summary>
            A range for cells using 0 index positions. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.CellRange.FromColumn">
            <summary>
            Gets the column the range starts in
            </summary>
        </member>
        <member name="P:ExcelDataReader.CellRange.FromRow">
            <summary>
            Gets the row the range starts in
            </summary>
        </member>
        <member name="P:ExcelDataReader.CellRange.ToColumn">
            <summary>
            Gets the column the range ends in
            </summary>
        </member>
        <member name="P:ExcelDataReader.CellRange.ToRow">
            <summary>
            Gets the row the range ends in
            </summary>
        </member>
        <member name="F:ExcelDataReader.Core.BinaryFormat.BIFFRECORDTYPE.UNCALCED">
            <summary>
            If present the Calculate Message was in the status bar when Excel saved the file.
            This occurs if the sheet changed, the Manual calculation option was on, and the Recalculate Before Save option was off.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.IXlsString.GetValue(System.Text.Encoding)">
            <summary>
            Gets the string value. Encoding is only used with BIFF2-5 byte strings.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell">
            <summary>
            Represents blank cell
            Base class for all cell types
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell.RowIndex">
            <summary>
            Gets the zero-based index of row containing this cell.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell.ColumnIndex">
            <summary>
            Gets the zero-based index of column containing this cell.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell.XFormat">
            <summary>
            Gets the extended format used for this cell. If BIFF2 and this value is 63, this record was preceded by an IXFE record containing the actual XFormat >= 63.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell.Format">
            <summary>
            Gets the number format used for this cell. Only used in BIFF2 without XF records. Used by Excel 2.0/2.1 instead of XF/IXFE records.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell.IsCell">
            <inheritdoc />
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell.IsBiff2Cell">
            <summary>
            Gets a value indicating whether the cell's record identifier is BIFF2-specific. 
            The shared binary layout of BIFF2 cells are different from BIFF3+.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF">
            <summary>
            Represents BIFF BOF record
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF.Version">
            <summary>
            Gets the version.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF.Type">
            <summary>
            Gets the type of the BIFF block
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF.CreationId">
            <summary>
            Gets the creation Id.
            </summary>
            <remarks>Not used before BIFF5</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF.CreationYear">
            <summary>
            Gets the creation year.
            </summary>
            <remarks>Not used before BIFF5</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF.HistoryFlag">
            <summary>
            Gets the file history flag.
            </summary>
            <remarks>Not used before BIFF8</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBOF.MinVersionToOpen">
            <summary>
            Gets the minimum Excel version to open this file.
            </summary>
            <remarks>Not used before BIFF8</remarks>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffBoundSheet">
            <summary>
            Represents Sheet record in Workbook Globals
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBoundSheet.StartOffset">
            <summary>
            Gets the worksheet data start offset.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBoundSheet.Type">
            <summary>
            Gets the worksheet type.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffBoundSheet.VisibleState">
            <summary>
            Gets the visibility of the worksheet.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffBoundSheet.GetSheetName(System.Text.Encoding)">
            <summary>
            Gets the name of the worksheet.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffContinue">
            <summary>
            Represents additional space for very large records
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffDbCell">
            <summary>
            Represents cell-indexing record, finishes each row values block
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDbCell.RowAddress">
            <summary>
            Gets the offset of first row linked with this record
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDbCell.CellAddresses">
            <summary>
            Gets the addresses of cell values.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDefaultRowHeight.RowHeight">
            <summary>
            Gets the row height in twips
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffDimensions">
            <summary>
            Represents Dimensions of worksheet
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDimensions.FirstRow">
            <summary>
            Gets the index of first row.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDimensions.LastRow">
            <summary>
            Gets the index of last row + 1.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDimensions.FirstColumn">
            <summary>
            Gets the index of first column.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffDimensions.LastColumn">
            <summary>
            Gets the index of last column + 1.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffEof">
            <summary>
            Represents BIFF EOF resord
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffFilePass">
            <summary>
            Represents FILEPASS record containing XOR obfuscation details or a an EncryptionInfo structure
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffFormatString">
            <summary>
            Represents a string value of format
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffFormatString.GetValue(System.Text.Encoding)">
            <summary>
            Gets the string value.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell">
            <summary>
            Represents a cell containing formula
            </summary>
        </member>
        <member name="F:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.FormulaValueType.String">
            <summary>
            Indicates that a string value is stored in a String record that immediately follows this record. See[MS - XLS] 2.5.133 FormulaValue.
            </summary>
        </member>
        <member name="F:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.FormulaValueType.EmptyString">
            <summary>
            Indecates that the formula value is an empty string.
            </summary>
        </member>
        <member name="F:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.FormulaValueType.Boolean">
            <summary>
            Indicates that the <see cref="P:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.BooleanValue"/> property is valid.
            </summary>
        </member>
        <member name="F:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.FormulaValueType.Error">
            <summary>
            Indicates that the <see cref="P:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.ErrorValue"/> property is valid.
            </summary>
        </member>
        <member name="F:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.FormulaValueType.Number">
            <summary>
            Indicates that the <see cref="P:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.XNumValue"/> property is valid.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.Flags">
            <summary>
            Gets the formula flags
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaCell.FormulaType">
            <summary>
            Gets the formula value type.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaString">
            <summary>
            Represents a string value of formula
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffFormulaString.GetValue(System.Text.Encoding)">
            <summary>
            Gets the string value.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffHeaderFooterString">
            <summary>
            Represents a string value of a header or footer.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffHeaderFooterString.GetValue(System.Text.Encoding)">
            <summary>
            Gets the string value.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffIndex">
            <summary>
            Represents a worksheet index
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffIndex.IsV8">
            <summary>
            Gets a value indicating whether BIFF8 addressing is used or not.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffIndex.FirstExistingRow">
            <summary>
            Gets the zero-based index of first existing row
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffIndex.LastExistingRow">
            <summary>
            Gets the zero-based index of last existing row
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffIndex.DbCellAddresses">
            <summary>
            Gets the addresses of DbCell records
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffIntegerCell">
            <summary>
            Represents a constant integer number in range 0..65535
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffIntegerCell.Value">
            <summary>
            Gets the cell value.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffInterfaceHdr">
            <summary>
            Represents InterfaceHdr record in Wokrbook Globals
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffInterfaceHdr.CodePage">
            <summary>
            Gets the CodePage for Interface Header
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffLabelCell">
            <summary>
            [MS-XLS] 2.4.148 Label
            Represents a string
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffLabelCell.GetValue(System.Text.Encoding)">
            <summary>
            Gets the cell value.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffLabelSSTCell">
            <summary>
            Represents a string stored in SST
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffLabelSSTCell.SSTIndex">
            <summary>
            Gets the index of string in Shared String Table
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffMergeCells">
            <summary>
            [MS-XLS] 2.4.168 MergeCells
             If the count of the merged cells in the document is greater than 1026, the file will contain multiple adjacent MergeCells records.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffMSODrawing">
            <summary>
            Represents MSO Drawing record
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffMulBlankCell">
            <summary>
            Represents multiple Blank cell
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffMulBlankCell.LastColumnIndex">
            <summary>
            Gets the zero-based index of last described column
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffMulBlankCell.GetXF(System.UInt16)">
            <summary>
            Returns format forspecified column, column must be between ColumnIndex and LastColumnIndex
            </summary>
            <param name="columnIdx">Index of column</param>
            <returns>Format</returns>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffMulRKCell">
            <summary>
            Represents multiple RK number cells
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffMulRKCell.LastColumnIndex">
            <summary>
            Gets the zero-based index of last described column
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffMulRKCell.GetXF(System.UInt16)">
            <summary>
            Returns format for specified column
            </summary>
            <param name="columnIdx">Index of column, must be between ColumnIndex and LastColumnIndex</param>
            <returns>The format.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffMulRKCell.GetValue(System.UInt16)">
            <summary>
            Gets the value for specified column
            </summary>
            <param name="columnIdx">Index of column, must be between ColumnIndex and LastColumnIndex</param>
            <returns>The value.</returns>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffNumberCell">
            <summary>
            Represents a floating-point number 
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffNumberCell.Value">
            <summary>
            Gets the value of this cell
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffQuickTip">
            <summary>
            For now QuickTip will do nothing, it seems to have a different
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffRecord">
            <summary>
            Represents basic BIFF record
            Base class for all BIFF record types
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRecord.Id">
            <summary>
            Gets the type Id of this entry
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRecord.RecordSize">
            <summary>
            Gets the data size of this entry
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRecord.Size">
            <summary>
            Gets the whole size of structure
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffRKCell">
            <summary>
            Represents an RK number cell
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRKCell.Value">
            <summary>
            Gets the value of this cell
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffRKCell.NumFromRK(System.UInt32)">
            <summary>
            Decodes RK-encoded number
            </summary>
            <param name="rk">Encoded number</param>
            <returns>The number.</returns>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffRow">
            <summary>
            Represents row record in table
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.RowIndex">
            <summary>
            Gets the zero-based index of row described
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.FirstDefinedColumn">
            <summary>
            Gets the index of first defined column
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.LastDefinedColumn">
            <summary>
            Gets the index of last defined column
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.UseDefaultRowHeight">
            <summary>
            Gets a value indicating whether to use the default row height instead of the RowHeight property
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.RowHeight">
            <summary>
            Gets the row height in twips.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.UseXFormat">
            <summary>
            Gets a value indicating whether the XFormat property is used
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffRow.XFormat">
            <summary>
            Gets the default format for this row
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffSimpleValueRecord">
            <summary>
            Represents record with the only two-bytes value
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffSimpleValueRecord.Value">
            <summary>
            Gets the value
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffSST">
            <summary>
            Represents a Shared String Table in BIFF8 format
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffSST.Count">
            <summary>
            Gets the number of strings in SST
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffSST.UniqueCount">
            <summary>
            Gets the count of unique strings in SST
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffSST.ReadStrings(ExcelDataReader.Core.BinaryFormat.XlsBiffStream)">
            <summary>
            Parses strings out of the SST record and subsequent Continue records from the BIFF stream
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffSST.GetString(System.UInt32,System.Text.Encoding)">
            <summary>
            Returns string at specified index
            </summary>
            <param name="sstIndex">Index of string to get</param>
            <param name="encoding">Workbook encoding</param>
            <returns>string value if it was found, empty string otherwise</returns>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffStream">
            <summary>
            Represents a BIFF stream
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.Size">
            <summary>
            Gets the size of BIFF stream in bytes
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.Position">
            <summary>
            Gets or sets the current position in BIFF stream
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.CipherTransform">
            <summary>
            Gets or sets the ICryptoTransform instance used to decrypt the current block
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.CipherBlock">
            <summary>
            Gets or sets the current block number being decrypted with CipherTransform
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.Seek(System.Int32,System.IO.SeekOrigin)">
            <summary>
            Sets stream pointer to the specified offset
            </summary>
            <param name="offset">Offset value</param>
            <param name="origin">Offset origin</param>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.Read">
            <summary>
            Reads record under cursor and advances cursor position to next record
            </summary>
            <returns>The record -or- null.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.GetRecord(System.IO.Stream)">
            <summary>
            Returns record at specified offset
            </summary>
            <param name="stream">The stream</param>
            <returns>The record -or- null.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.CreateBlockDecryptor(System.Int32)">
            <summary>
            Create an ICryptoTransform instance to decrypt a 1024-byte block
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsBiffStream.AlignBlockDecryptor(System.Int32)">
            <summary>
            Decrypt some dummy bytes to align the decryptor with the position in the current 1024-byte block
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffUncalced">
            <summary>
            If present the Calculate Message was in the status bar when Excel saved the file.
            This occurs if the sheet changed, the Manual calculation option was on, and the Recalculate Before Save option was off.    
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1">
            <summary>
            Represents Workbook's global window description
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.Left">
            <summary>
            Gets the X position of a window
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.Top">
            <summary>
            Gets the Y position of a window
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.Width">
            <summary>
            Gets the width of the window
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.Height">
            <summary>
            Gets the height of the window
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.Flags">
            <summary>
            Gets the window flags
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.ActiveTab">
            <summary>
            Gets the active workbook tab (zero-based)
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.FirstVisibleTab">
            <summary>
            Gets the first visible workbook tab (zero-based)
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.SelectedTabCount">
            <summary>
            Gets the number of selected workbook tabs
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsBiffWindow1.TabRatio">
            <summary>
            Gets the workbook tab width to horizontal scrollbar width
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsByteString">
            <summary>
            Word-sized string, stored as single bytes with encoding from CodePage record. Used in BIFF2-5 
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsByteString.CharacterCount">
            <summary>
            Gets the number of characters in the string.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsByteString.GetValue(System.Text.Encoding)">
            <summary>
            Gets the value.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsInternalString">
            <summary>
            Plain string without backing storage. Used internally
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsShortByteString">
            <summary>
            Byte sized string, stored as bytes, with encoding from CodePage record. Used in BIFF2-5 .
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsShortUnicodeString">
            <summary>
            [MS-XLS] 2.5.240 ShortXLUnicodeString
            Byte-sized string, stored as single or multibyte unicode characters.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsShortUnicodeString.IsMultiByte">
            <summary>
            Gets a value indicating whether the string is a multibyte string or not.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsSSTReader">
            <summary>
            Helper class for parsing the BIFF8 Shared String Table (SST)
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTReader.CurrentRecordOffset">
            <summary>
            Gets or sets the offset into the current record's byte content. May point at the end when the current record has been parsed entirely.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsSSTReader.ReadString">
            <summary>
            Reads an SST string potentially spanning multiple records
            </summary>
            <returns>The string</returns>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsSSTReader.EnsureRecord">
            <summary>
            If the read position is exactly at the end of a record:
            Read the next continue record and update the read position.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsSSTReader.Advance(System.Int32)">
            <summary>
            Advances the read position a number of bytes, potentially spanning
            multiple records.
            NOTE: If the new read position ends on a record boundary, 
            the next record will not be read, and the read position will point
            at the end of the record! Must call EnsureRecord() as needed
            to read the next continue record and reset the read position. 
            </summary>
            <param name="bytes">Number of bytes to skip</param>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader">
            <summary>
            [MS-XLS] 2.5.293 XLUnicodeRichExtendedString
            Word-sized formatted string in SST, stored as single or multibyte unicode characters potentially spanning multiple Continue records.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.CharacterCount">
            <summary>
            Gets the number of characters in the string.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.Flags">
            <summary>
            Gets the flags.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.HasExtString">
            <summary>
            Gets a value indicating whether the string has an extended record. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.HasFormatting">
            <summary>
            Gets a value indicating whether the string has a formatting record.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.IsMultiByte">
            <summary>
            Gets a value indicating whether the string is a multibyte string or not.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.FormatCount">
            <summary>
            Gets the number of formats used for formatting (0 if string has no formatting)
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.ExtendedStringSize">
            <summary>
            Gets the size of extended string in bytes, 0 if there is no one
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.HeadSize">
            <summary>
            Gets the head (before string data) size in bytes
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsSSTStringHeader.TailSize">
            <summary>
            Gets the tail (after string data) size in bytes
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsUnicodeString">
            <summary>
            [MS-XLS] 2.5.294 XLUnicodeString
            Word-sized string, stored as single or multibyte unicode characters.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsUnicodeString.IsMultiByte">
            <summary>
            Gets a value indicating whether the string is a multibyte string or not.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsWorkbook">
            <summary>
            Represents Globals section of workbook
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsWorkbook.SST">
            <summary>
            Gets or sets the Shared String Table of workbook
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.BinaryFormat.XlsWorksheet">
            <summary>
            Represents Worksheet section in workbook
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsWorksheet.Name">
            <summary>
            Gets the worksheet name
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsWorksheet.VisibleState">
            <summary>
            Gets the visibility of worksheet
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.BinaryFormat.XlsWorksheet.DataOffset">
            <summary>
            Gets the worksheet data offset.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsWorksheet.GetBlockSize(System.Int32,System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Find how many rows to read at a time and their offset in the file.
            If rows are stored sequentially in the file, returns a block size of up to 32 rows.
            If rows are stored non-sequentially, the block size may extend up to the entire worksheet stream
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsWorksheet.ReadSingleCell(ExcelDataReader.Core.BinaryFormat.XlsBiffStream,ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell,System.Int32)">
            <summary>
            Reads additional records if needed: a string record might follow a formula result
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.BinaryFormat.XlsWorksheet.GetFormatIndexForCell(ExcelDataReader.Core.BinaryFormat.XlsBiffBlankCell,ExcelDataReader.Core.BinaryFormat.XlsBiffRecord)">
            <summary>
            Returns an index into Workbook.Formats for the given cell and preceding ixfe record.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.Cell.ColumnIndex">
            <summary>
            Gets or sets the zero-based column index.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.CommonWorkbook">
            <summary>
            Common handling of extended formats (XF) and mappings between file-based and global number format indices.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CommonWorkbook.Formats">
            <summary>
            Gets the dictionary of global number format strings. Always includes the built-in formats at their
            corresponding indices and any additional formats specified in the workbook file.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CommonWorkbook.FormatMappings">
            <summary>
            Gets the the dictionary of mappings between format index in the file and key in the Formats dictionary.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CommonWorkbook.GetNumberFormatFromXF(System.Int32)">
            <summary>
            Returns the global number format index from an XF index.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CommonWorkbook.GetNumberFormatFromFileIndex(System.Int32)">
            <summary>
            Returns the global number format index from a file-based format index.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CommonWorkbook.AddNumberFormat(System.Int32,System.String)">
            <summary>
            Registers a number format string and its file-based format index in the workbook's Formats dictionary.
            If the format string matches a built-in or previously registered format, it will be mapped to that index.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CommonWorkbook.AddExtendedFormat(System.Int32,System.Int32,System.Boolean)">
            <summary>
            Registers an extended format and its file based number format index.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry">
            <summary>
            Represents single Root Directory record
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.EntryName">
            <summary>
            Gets or sets the name of directory entry
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.EntryType">
            <summary>
            Gets or sets the entry type
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.EntryColor">
            <summary>
            Gets or sets the entry "color" in directory tree
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.LeftSiblingSid">
            <summary>
            Gets or sets the SID of left sibling
            </summary>
            <remarks>0xFFFFFFFF if there's no one</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.RightSiblingSid">
            <summary>
            Gets or sets the SID of right sibling
            </summary>
            <remarks>0xFFFFFFFF if there's no one</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.ChildSid">
            <summary>
            Gets or sets the SID of first child (if EntryType is STGTY_STORAGE)
            </summary>
            <remarks>0xFFFFFFFF if there's no one</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.ClassId">
            <summary>
            Gets or sets the CLSID of container (if EntryType is STGTY_STORAGE)
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.UserFlags">
            <summary>
            Gets or sets the user flags of container (if EntryType is STGTY_STORAGE)
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.CreationTime">
            <summary>
            Gets or sets the creation time of entry
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.LastWriteTime">
            <summary>
            Gets or sets the last modification time of entry
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.StreamFirstSector">
            <summary>
            Gets or sets the first sector of data stream (if EntryType is STGTY_STREAM)
            </summary>
            <remarks>if EntryType is STGTY_ROOT, this can be first sector of MiniStream</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.StreamSize">
            <summary>
            Gets or sets the size of data stream (if EntryType is STGTY_STREAM)
            </summary>
            <remarks>if EntryType is STGTY_ROOT, this can be size of MiniStream</remarks>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.IsEntryMiniStream">
            <summary>
            Gets or sets a value indicating whether this entry relats to a ministream
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundDirectoryEntry.PropType">
            <summary>
            Gets or sets the prop type. Reserved, must be 0.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CompoundFormat.CompoundDocument.ReadStream(System.IO.Stream,System.UInt32,System.Int32,System.Boolean)">
            <summary>
            Reads bytes from a regular or mini stream.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CompoundFormat.CompoundDocument.ReadDifSectorChain(System.IO.BinaryReader)">
            <summary>
            The header contains the first 109 DIF entries. If there are any more, read from a separate stream.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.CompoundFormat.CompoundHeader">
            <summary>
            Represents Excel file header
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.Signature">
            <summary>
            Gets or sets the file signature
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.IsSignatureValid">
            <summary>
            Gets a value indicating whether the signature is valid. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.ClassId">
            <summary>
            Gets or sets the class id. Typically filled with zeroes
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.Version">
            <summary>
            Gets or sets the version. Must be 0x003E
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.DllVersion">
            <summary>
            Gets or sets the dll version. Must be 0x0003
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.ByteOrder">
            <summary>
            Gets or sets the byte order. Must be 0xFFFE
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.SectorSizeInPot">
            <summary>
            Gets or sets the sector size in Pot
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.SectorSize">
            <summary>
            Gets the sector size. Typically 512
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.MiniSectorSizeInPot">
            <summary>
            Gets or sets the mini sector size in Pot
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.MiniSectorSize">
            <summary>
            Gets the mini sector size. Typically 64
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.DirectorySectorCount">
            <summary>
            Gets or sets the number of directory sectors. If Major Version is 3, the Number of 
            Directory Sectors MUST be zero. This field is not supported for version 3 compound files
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.FatSectorCount">
            <summary>
            Gets or sets the number of FAT sectors
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.RootDirectoryEntryStart">
            <summary>
            Gets or sets the number of first Root Directory Entry (Property Set Storage, FAT Directory) sector
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.TransactionSignature">
            <summary>
            Gets or sets the transaction signature, 0 for Excel
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.MiniStreamCutoff">
            <summary>
            Gets or sets the maximum size for small stream, typically 4096 bytes
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.MiniFatFirstSector">
            <summary>
            Gets or sets the first sector of Mini FAT, FAT_EndOfChain if there's no one
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.MiniFatSectorCount">
            <summary>
            Gets or sets the number of sectors in Mini FAT, 0 if there's no one
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.DifFirstSector">
            <summary>
            Gets or sets the first sector of DIF, FAT_EndOfChain if there's no one
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.DifSectorCount">
            <summary>
            Gets or sets the number of sectors in DIF, 0 if there's no one
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.CompoundFormat.CompoundHeader.First109DifSectorChain">
            <summary>
            Gets or sets the first 109 locations in the DIF sector chain
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.CsvFormat.CsvAnalyzer.Analyze(System.IO.Stream,System.Char[],System.Text.Encoding,System.Int32,System.Int32@,System.Char@,System.Text.Encoding@,System.Int32@,System.Int32@)">
            <summary>
            Reads completely through a CSV stream to determine encoding, separator, field count and row count. 
            Uses fallbackEncoding if there is no BOM. Throws DecoderFallbackException if there are invalid characters in the stream.
            Returns the separator whose average field count is closest to its max field count.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.CsvFormat.CsvParser">
            <summary>
            Low level, reentrant CSV parser. Call ParseBuffer() in a loop, and finally Flush() to empty the internal buffers.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.Helpers">
            <summary>
            Helpers class
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.Helpers.IsSingleByteEncoding(System.Text.Encoding)">
            <summary>
            Determines whether the encoding is single byte or not.
            </summary>
            <param name="encoding">The encoding.</param>
            <returns>
                <see langword="true"/> if the specified encoding is single byte; otherwise, <see langword="false"/>.
            </returns>
        </member>
        <member name="M:ExcelDataReader.Core.Helpers.AdjustOADateTime(System.Double,System.Boolean)">
            <summary>
            Convert a double from Excel to an OA DateTime double. 
            The returned value is normalized to the '1900' date mode and adjusted for the 1900 leap year bug.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.IWorkbook`1">
            <summary>
            The common workbook interface between the binary and OpenXml formats
            </summary>
            <typeparam name="TWorksheet">A type implementing IWorksheet</typeparam>
        </member>
        <member name="T:ExcelDataReader.Core.IWorksheet">
            <summary>
            The common worksheet interface between the binary and OpenXml formats
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.NumberFormat.NumberFormatString">
            <summary>
            Parse ECMA-376 number format strings from Excel and other spreadsheet softwares.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.NumberFormat.NumberFormatString.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Core.NumberFormat.NumberFormatString"/> class.
            </summary>
            <param name="formatString">The number format string.</param>
        </member>
        <member name="P:ExcelDataReader.Core.NumberFormat.NumberFormatString.IsValid">
            <summary>
            Gets a value indicating whether the number format string is valid.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.NumberFormat.NumberFormatString.FormatString">
            <summary>
            Gets the number format string.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.NumberFormat.NumberFormatString.IsDateTimeFormat">
            <summary>
            Gets a value indicating whether the format represents a DateTime
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.NumberFormat.NumberFormatString.IsTimeSpanFormat">
            <summary>
            Gets a value indicating whether the format represents a TimeSpan
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.NumberFormat.Parser.ParseNumberTokens(System.Collections.Generic.List{System.String},System.Int32,System.Collections.Generic.List{System.String}@,System.Boolean@,System.Collections.Generic.List{System.String}@)">
            <summary>
            Parses as many placeholders and literals needed to format a number with optional decimals. 
            Returns number of tokens parsed, or 0 if the tokens didn't form a number.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.AgileEncryptedPackageStream">
            <summary>
            A seekable stream for reading an EncryptedPackage blob using OpenXml Agile Encryption. 
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.AgileEncryption">
            <summary>
            Represents "Agile Encryption" used in XLSX (Office 2010 and newer)
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.EncryptionInfo">
            <summary>
            Base class for the various encryption schemes used by Excel
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.OfficeCrypto.EncryptionInfo.IsXor">
            <summary>
            Gets a value indicating whether XOR obfuscation is used.
            When true, the ICryptoTransform can be cast to XorTransform and
            handle the special case where XorArrayIndex must be manipulated
            per record.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.RC4Encryption">
            <summary>
            Represents the binary RC4+MD5 encryption header used in XLS.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.RC4Managed">
            <summary>
            Minimal RC4 decryption compatible with System.Security.Cryptography.SymmetricAlgorithm.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.StandardEncryption">
            <summary>
            Represents the binary "Standard Encryption" header used in XLS and XLSX.
            XLS uses RC4+SHA1. XLSX uses AES+SHA1.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.OfficeCrypto.StandardEncryption.GenerateCryptoApiSecretKey(System.String,System.Byte[],ExcelDataReader.Core.OfficeCrypto.HashIdentifier,System.Int32)">
            <summary>
            2.3.5.2 RC4 CryptoAPI Encryption Key Generation
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.OfficeCrypto.StandardEncryption.GenerateEcma376SecretKey(System.String,System.Byte[],ExcelDataReader.Core.OfficeCrypto.HashIdentifier,System.Int32,System.Int32)">
            <summary>
            2.3.4.7 ECMA-376 Document Encryption Key Generation (Standard Encryption)
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.XorEncryption">
            <summary>
            Represents "XOR Deobfucation Method 1" used in XLS.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OfficeCrypto.XorManaged">
            <summary>
            Minimal Office "XOR Deobfuscation Method 1" implementation compatible
            with System.Security.Cryptography.SymmetricAlgorithm.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.OfficeCrypto.XorManaged.CreateXorArray_Method1(System.Byte[])">
            <summary>
            Generates a 16 byte obfuscation array based on the POI/LibreOffice implementations
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.OfficeCrypto.XorManaged.XorTransform.XorArrayIndex">
            <summary>
            Gets or sets the obfuscation array index. BIFF obfuscation uses a different XorArrayIndex per record.
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OpenXmlFormat.XlsxElement">
            <summary>
            Base class for worksheet stream elements
            </summary>
        </member>
        <member name="T:ExcelDataReader.Core.OpenXmlFormat.XlsxSST">
            <summary>
            Shared string table
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.ReferenceHelper.ParseReference(System.String,System.Int32@,System.Int32@)">
            <summary>
            Logic for the Excel dimensions. Ex: A15
            </summary>
            <param name="value">The value.</param>
            <param name="column">The column, 1-based.</param>
            <param name="row">The row, 1-based.</param>
        </member>
        <member name="P:ExcelDataReader.Core.Row.RowIndex">
            <summary>
            Gets or sets the zero-based row index.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.Row.Height">
            <summary>
            Gets or sets the height of this row in points. Zero if hidden or collapsed.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.Row.Cells">
            <summary>
            Gets or sets the cells in this row.
            </summary>
        </member>
        <member name="P:ExcelDataReader.Core.Row.IsEmpty">
            <summary>
            Gets a value indicating whether the row is empty. NOTE: Returns true if there are empty, but formatted cells.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.Row.GetMaxColumnIndex">
            <summary>
            Returns the zero-based maximum column index reference on this row.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Core.ZipWorker.#ctor(System.IO.Stream)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Core.ZipWorker"/> class. 
            </summary>
            <param name="fileStream">The zip file stream.</param>
        </member>
        <member name="M:ExcelDataReader.Core.ZipWorker.GetSharedStringsStream">
            <summary>
            Gets the shared strings stream.
            </summary>
            <returns>The shared strings stream.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.ZipWorker.GetStylesStream">
            <summary>
            Gets the styles stream.
            </summary>
            <returns>The styles stream.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.ZipWorker.GetWorkbookStream">
            <summary>
            Gets the workbook stream.
            </summary>
            <returns>The workbook stream.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.ZipWorker.GetWorksheetStream(System.Int32)">
            <summary>
            Gets the worksheet stream.
            </summary>
            <param name="sheetId">The sheet id.</param>
            <returns>The worksheet stream.</returns>
        </member>
        <member name="M:ExcelDataReader.Core.ZipWorker.GetWorkbookRelsStream">
            <summary>
            Gets the workbook rels stream.
            </summary>
            <returns>The rels stream.</returns>
        </member>
        <member name="T:ExcelDataReader.ExcelBinaryReader">
            <summary>
            ExcelDataReader Class
            </summary>
        </member>
        <member name="T:ExcelDataReader.ExcelDataReader`2">
            <summary>
            A generic implementation of the IExcelDataReader interface using IWorkbook/IWorksheet to enumerate data.
            </summary>
            <typeparam name="TWorkbook">A type implementing IWorkbook</typeparam>
            <typeparam name="TWorksheet">A type implementing IWorksheet</typeparam>
        </member>
        <member name="M:ExcelDataReader.ExcelDataReader`2.GetSchemaTable">
            <inheritdoc />
        </member>
        <member name="M:ExcelDataReader.ExcelDataReader`2.Reset">
            <inheritdoc />
        </member>
        <member name="T:ExcelDataReader.ExcelReaderConfiguration">
            <summary>
            Configuration options for an instance of ExcelDataReader.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelReaderConfiguration.FallbackEncoding">
            <summary>
            Gets or sets a value indicating the encoding to use when the input XLS lacks a CodePage record, 
            or when the input CSV lacks a BOM and does not parse as UTF8. Default: cp1252. (XLS BIFF2-5 and CSV only)
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelReaderConfiguration.Password">
            <summary>
            Gets or sets the password used to open password protected workbooks.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelReaderConfiguration.AutodetectSeparators">
            <summary>
            Gets or sets an array of CSV separator candidates. The reader autodetects which best fits the input data. Default: , ; TAB | # (CSV only)
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelReaderConfiguration.LeaveOpen">
            <summary>
            Gets or sets a value indicating whether to leave the stream open after the IExcelDataReader object is disposed. Default: false
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelReaderConfiguration.AnalyzeInitialCsvRows">
            <summary>
            Gets or sets a value indicating the number of rows to analyze for encoding, separator and field count in a CSV.
            When set, this option causes the IExcelDataReader.RowCount property to throw an exception.
            Default: 0 - analyzes the entire file (CSV only, has no effect on other formats)
            </summary>
        </member>
        <member name="T:ExcelDataReader.ExcelReaderFactory">
            <summary>
            The ExcelReader Factory
            </summary>
        </member>
        <member name="M:ExcelDataReader.ExcelReaderFactory.CreateReader(System.IO.Stream,ExcelDataReader.ExcelReaderConfiguration)">
            <summary>
            Creates an instance of <see cref="T:ExcelDataReader.ExcelBinaryReader"/> or <see cref="T:ExcelDataReader.ExcelOpenXmlReader"/>
            </summary>
            <param name="fileStream">The file stream.</param>
            <param name="configuration">The configuration object.</param>
            <returns>The excel data reader.</returns>
        </member>
        <member name="M:ExcelDataReader.ExcelReaderFactory.CreateBinaryReader(System.IO.Stream,ExcelDataReader.ExcelReaderConfiguration)">
            <summary>
            Creates an instance of <see cref="T:ExcelDataReader.ExcelBinaryReader"/>
            </summary>
            <param name="fileStream">The file stream.</param>
            <param name="configuration">The configuration object.</param>
            <returns>The excel data reader.</returns>
        </member>
        <member name="M:ExcelDataReader.ExcelReaderFactory.CreateOpenXmlReader(System.IO.Stream,ExcelDataReader.ExcelReaderConfiguration)">
            <summary>
            Creates an instance of <see cref="T:ExcelDataReader.ExcelOpenXmlReader"/>
            </summary>
            <param name="fileStream">The file stream.</param>
            <param name="configuration">The reader configuration -or- <see langword="null"/> to use the default configuration.</param>
            <returns>The excel data reader.</returns>
        </member>
        <member name="M:ExcelDataReader.ExcelReaderFactory.CreateCsvReader(System.IO.Stream,ExcelDataReader.ExcelReaderConfiguration)">
            <summary>
            Creates an instance of ExcelCsvReader
            </summary>
            <param name="fileStream">The file stream.</param>
            <param name="configuration">The reader configuration -or- <see langword="null"/> to use the default configuration.</param>
            <returns>The excel data reader.</returns>
        </member>
        <member name="T:ExcelDataReader.Exceptions.CompoundDocumentException">
            <summary>
            Thrown when there is a problem parsing the Compound Document container format used by XLS and password-protected XLSX.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Exceptions.CompoundDocumentException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.CompoundDocumentException"/> class.
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="M:ExcelDataReader.Exceptions.CompoundDocumentException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.CompoundDocumentException"/> class.
            </summary>
            <param name="message">The error message</param>
            <param name="inner">The inner exception</param>
        </member>
        <member name="T:ExcelDataReader.Exceptions.ExcelReaderException">
            <summary>
            Base class for exceptions thrown by ExcelDataReader
            </summary>
        </member>
        <member name="M:ExcelDataReader.Exceptions.ExcelReaderException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.ExcelReaderException"/> class.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Exceptions.ExcelReaderException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.ExcelReaderException"/> class.
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="M:ExcelDataReader.Exceptions.ExcelReaderException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.ExcelReaderException"/> class.
            </summary>
            <param name="message">The error message</param>
            <param name="inner">The inner exception</param>
        </member>
        <member name="M:ExcelDataReader.Exceptions.ExcelReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.ExcelReaderException"/> class.
            </summary>
            <param name="info">The serialization info</param>
            <param name="context">The streaming context</param>
        </member>
        <member name="T:ExcelDataReader.Exceptions.HeaderException">
            <summary>
            Thrown when ExcelDataReader cannot parse the header
            </summary>
        </member>
        <member name="M:ExcelDataReader.Exceptions.HeaderException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.HeaderException"/> class.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Exceptions.HeaderException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.HeaderException"/> class.
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="M:ExcelDataReader.Exceptions.HeaderException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.HeaderException"/> class.
            </summary>
            <param name="message">The error message</param>
            <param name="inner">The inner exception</param>
        </member>
        <member name="M:ExcelDataReader.Exceptions.HeaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.HeaderException"/> class.
            </summary>
            <param name="info">The serialization info</param>
            <param name="context">The streaming context</param>
        </member>
        <member name="T:ExcelDataReader.Exceptions.InvalidPasswordException">
            <summary>
            Thrown when ExcelDataReader cannot open a password protected document because the password
            </summary>
        </member>
        <member name="M:ExcelDataReader.Exceptions.InvalidPasswordException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:ExcelDataReader.Exceptions.InvalidPasswordException"/> class.
            </summary>
            <param name="message">The error message</param>
        </member>
        <member name="T:ExcelDataReader.HeaderFooter">
            <summary>
            Header and footer text. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.HasDifferentFirst">
            <summary>
            Gets a value indicating whether the header and footer are different on the first page. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.HasDifferentOddEven">
            <summary>
            Gets a value indicating whether the header and footer are different on odd and even pages.
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.FirstHeader">
            <summary>
            Gets the header used for the first page if <see cref="P:ExcelDataReader.HeaderFooter.HasDifferentFirst"/> is <see langword="true"/>.
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.FirstFooter">
            <summary>
            Gets the footer used for the first page if <see cref="P:ExcelDataReader.HeaderFooter.HasDifferentFirst"/> is <see langword="true"/>.
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.OddHeader">
            <summary>
            Gets the header used for odd pages -or- all pages if <see cref="P:ExcelDataReader.HeaderFooter.HasDifferentOddEven"/> is <see langword="false"/>. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.OddFooter">
            <summary>
            Gets the footer used for odd pages -or- all pages if <see cref="P:ExcelDataReader.HeaderFooter.HasDifferentOddEven"/> is <see langword="false"/>. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.EvenHeader">
            <summary>
            Gets the header used for even pages if <see cref="P:ExcelDataReader.HeaderFooter.HasDifferentOddEven"/> is <see langword="true"/>. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.HeaderFooter.EvenFooter">
            <summary>
            Gets the footer used for even pages if <see cref="P:ExcelDataReader.HeaderFooter.HasDifferentOddEven"/> is <see langword="true"/>. 
            </summary>
        </member>
        <member name="T:ExcelDataReader.IExcelDataReader">
            <summary>
            The ExcelDataReader interface
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.Name">
            <summary>
            Gets the sheet name.
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.CodeName">
            <summary>
            Gets the sheet VBA code name.
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.VisibleState">
            <summary>
            Gets the sheet visible state.
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.HeaderFooter">
            <summary>
            Gets the sheet header and footer -or- <see langword="null"/> if none set.
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.MergeCells">
            <summary>
            Gets the list of merged cell ranges.
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.ResultsCount">
            <summary>
            Gets the number of results (workbooks).
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.RowCount">
            <summary>
            Gets the number of rows in the current result.
            </summary>
        </member>
        <member name="P:ExcelDataReader.IExcelDataReader.RowHeight">
            <summary>
            Gets the height of the current row in points.
            </summary>
        </member>
        <member name="M:ExcelDataReader.IExcelDataReader.Reset">
            <summary>
            Seeks to the first result.
            </summary>
        </member>
        <member name="M:ExcelDataReader.IExcelDataReader.GetNumberFormatString(System.Int32)">
            <summary>
            Gets the number format for the specified field -or- <see langword="null"/> if there is no value.
            </summary>
            <param name="i">The index of the field to find.</param>
            <returns>The number format string of the specified field.</returns>
        </member>
        <member name="M:ExcelDataReader.IExcelDataReader.GetNumberFormatIndex(System.Int32)">
            <summary>
            Gets the number format index for the specified field -or- -1 if there is no value.
            </summary>
            <param name="i">The index of the field to find.</param>
            <returns>The number format index of the specified field.</returns>
        </member>
        <member name="M:ExcelDataReader.IExcelDataReader.GetColumnWidth(System.Int32)">
            <summary>
            Gets the width the specified column.
            </summary>
            <param name="i">The index of the column to find.</param>
            <returns>The width of the specified column.</returns>
        </member>
        <member name="T:ExcelDataReader.Log.ILog">
            <summary>
            Custom interface for logging messages
            </summary>
        </member>
        <member name="M:ExcelDataReader.Log.ILog.Debug(System.String,System.Object[])">
            <summary>
            Debug level of the specified message. The other method is preferred since the execution is deferred.
            </summary>
            <param name="message">The message.</param>
            <param name="formatting">The formatting.</param>
        </member>
        <member name="M:ExcelDataReader.Log.ILog.Info(System.String,System.Object[])">
            <summary>
            Info level of the specified message. The other method is preferred since the execution is deferred.
            </summary>
            <param name="message">The message.</param>
            <param name="formatting">The formatting.</param>
        </member>
        <member name="M:ExcelDataReader.Log.ILog.Warn(System.String,System.Object[])">
            <summary>
            Warn level of the specified message. The other method is preferred since the execution is deferred.
            </summary>
            <param name="message">The message.</param>
            <param name="formatting">The formatting.</param>
        </member>
        <member name="M:ExcelDataReader.Log.ILog.Error(System.String,System.Object[])">
            <summary>
            Error level of the specified message. The other method is preferred since the execution is deferred.
            </summary>
            <param name="message">The message.</param>
            <param name="formatting">The formatting.</param>
        </member>
        <member name="M:ExcelDataReader.Log.ILog.Fatal(System.String,System.Object[])">
            <summary>
            Fatal level of the specified message. The other method is preferred since the execution is deferred.
            </summary>
            <param name="message">The message.</param>
            <param name="formatting">The formatting.</param>
        </member>
        <member name="T:ExcelDataReader.Log.ILogFactory">
            <summary>
            Factory interface for loggers.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Log.ILogFactory.Create(System.Type)">
            <summary>
            Create a logger for the specified type.
            </summary>
            <param name="loggingType">The type to create a logger for.</param>
            <returns>The logger instance.</returns>
        </member>
        <member name="T:ExcelDataReader.Log.Log">
            <summary>
            logger type initialization
            </summary>
        </member>
        <member name="M:ExcelDataReader.Log.Log.InitializeWith``1">
            <summary>
            Sets up logging to be with a certain type
            </summary>
            <typeparam name="T">The type of ILog for the application to use</typeparam>
        </member>
        <member name="M:ExcelDataReader.Log.Log.GetLoggerFor(System.Type)">
            <summary>
            Initializes a new instance of a logger for an object.
            This should be done only once per object name.
            </summary>
            <param name="loggingType">The type to get a logger for.</param>
            <returns>ILog instance for an object if log type has been intialized; otherwise a null logger.</returns>
        </member>
        <member name="T:ExcelDataReader.Log.Logger.NullLogFactory">
            <summary>
            The default logger until one is set.
            </summary>
        </member>
        <member name="M:ExcelDataReader.Log.Logger.NullLogFactory.Debug(System.String,System.Object[])">
            <inheritdoc />
        </member>
        <member name="M:ExcelDataReader.Log.Logger.NullLogFactory.Info(System.String,System.Object[])">
            <inheritdoc />
        </member>
        <member name="M:ExcelDataReader.Log.Logger.NullLogFactory.Warn(System.String,System.Object[])">
            <inheritdoc />
        </member>
        <member name="M:ExcelDataReader.Log.Logger.NullLogFactory.Error(System.String,System.Object[])">
            <inheritdoc />
        </member>
        <member name="M:ExcelDataReader.Log.Logger.NullLogFactory.Fatal(System.String,System.Object[])">
            <inheritdoc />
        </member>
        <member name="M:ExcelDataReader.Log.Logger.NullLogFactory.Create(System.Type)">
            <inheritdoc />
        </member>
        <member name="T:ExcelDataReader.Log.LogManager">
            <summary>
            2.0 version of LogExtensions, not as awesome as Extension methods
            </summary>
        </member>
        <member name="M:ExcelDataReader.Log.LogManager.Log``1(``0)">
            <summary>
            Gets the logger for a type.
            </summary>
            <typeparam name="T">The type to fetch a logger for.</typeparam>
            <param name="type">The type to get the logger for.</param>
            <returns>Instance of a logger for the object.</returns>
            <remarks>This method is thread safe.</remarks>
        </member>
    </members>
</doc>