Show / Hide Table of Contents

    DataStoreDataExtensions.ExportPlainJson Method

    .NET Standard 2.x

    Exports data from the primary buffer to a plain-format JSON string.

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Overloads

    Method Description
    ExportPlainJson(this IDataStoreBase dataStore) Exports data from the primary buffer to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, bool changedOnly) Exports all rows or only the changed rows from the DataStore to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, DwBuffer dwbuffer, bool changedOnly) Exports all rows or only the changed rows from all or specified buffers to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, bool primaryData, bool filterData, bool deleteData, bool dwcdata) Exports data from the specified buffer(s) and/or DataWindowChild to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, DwBuffer dwbuffer) Exports data from the specified buffer to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, DwBuffer dwbuffer, int startRow) Exports the rows (from the specified starting position to the end) from the specified buffer to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, DwBuffer dwbuffer, int startRow, int endRow) Exports the rows (from the specified starting position to the ending position) from the specified buffer to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, DwBuffer dwbuffer, int startRow, int endRow, int startColumn) Exports the rows (from the specified starting position to the ending position) and the columns (from the specified starting position to the end) from the specified buffer to a plain-format JSON string.
    ExportPlainJson(this IDataStoreBase dataStore, DwBuffer dwbuffer, int startRow, int endRow, int startColumn, int endColumn) 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 specified buffer to a plain-format JSON string.
    Back to top Generated by Appeon