qinjie
2023-12-19 15d15d24fbccb9b70a305b46b71453b2ab1a720e
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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ExcelDataReader.DataSet</name>
    </assembly>
    <members>
        <member name="T:ExcelDataReader.ExcelDataReaderExtensions">
            <summary>
            ExcelDataReader DataSet extensions
            </summary>
        </member>
        <member name="M:ExcelDataReader.ExcelDataReaderExtensions.AsDataSet(ExcelDataReader.IExcelDataReader,ExcelDataReader.ExcelDataSetConfiguration)">
            <summary>
            Converts all sheets to a DataSet
            </summary>
            <param name="self">The IExcelDataReader instance</param>
            <param name="configuration">An optional configuration object to modify the behavior of the conversion</param>
            <returns>A dataset with all workbook contents</returns>
        </member>
        <member name="T:ExcelDataReader.ExcelDataSetConfiguration">
            <summary>
            Processing configuration options and callbacks for IExcelDataReader.AsDataSet().
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataSetConfiguration.UseColumnDataType">
            <summary>
            Gets or sets a value indicating whether to set the DataColumn.DataType property in a second pass.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataSetConfiguration.ConfigureDataTable">
            <summary>
            Gets or sets a callback to obtain configuration options for a DataTable. 
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataSetConfiguration.FilterSheet">
            <summary>
            Gets or sets a callback to determine whether to include the current sheet in the DataSet. Called once per sheet before ConfigureDataTable.
            </summary>
        </member>
        <member name="T:ExcelDataReader.ExcelDataTableConfiguration">
            <summary>
            Processing configuration options and callbacks for AsDataTable().
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataTableConfiguration.EmptyColumnNamePrefix">
            <summary>
            Gets or sets a value indicating the prefix of generated column names.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataTableConfiguration.UseHeaderRow">
            <summary>
            Gets or sets a value indicating whether to use a row from the data as column names.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataTableConfiguration.ReadHeaderRow">
            <summary>
            Gets or sets a callback to determine which row is the header row. Only called when UseHeaderRow = true.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataTableConfiguration.FilterRow">
            <summary>
            Gets or sets a callback to determine whether to include the current row in the DataTable.
            </summary>
        </member>
        <member name="P:ExcelDataReader.ExcelDataTableConfiguration.FilterColumn">
            <summary>
            Gets or sets a callback to determine whether to include the specific column in the DataTable. Called once per column after reading the headers.
            </summary>
        </member>
    </members>
</doc>