Show / Hide Table of Contents

    DataStoreDataExtensions.ExportString Method

    .NET Standard 2.x

    Exports all of the data rows from the primary buffer of the DataStore to a string. The column name is exported by default.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Overloads

    Method Description
    ExportString(this IDataStoreBase dataStore, bool colheading = true) Exports all of the data rows from the primary buffer of the DataStore to a string. The column name is exported by default.
    ExportString(this IDataStoreBase dataStore, int startRow, int endRow, bool colheading = true) Exports the rows (from the specified starting position to the ending position) from the primary buffer of the DataStore to a string. The column name is exported by default.
    ExportString(this IDataStoreBase dataStore, int startRow, int endRow, short startColumn, short endColumn, bool colheading = true) Exports the rows (from the specified starting position to the ending position) and the columns (from the specified starting position to the ending position) from the primary buffer of the DataStore to a string. The column name is exported by default.
    Back to top Generated by Appeon