IDataImporter Interface

    .NET Standard 2.x

    Imports data into the DataStore buffer with the specified DataFormat.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Syntax

    public interface IDataImporter
    

    Methods

    Name Return Type Description
    Import(string json) string Imports data into the DataStore buffer with the specified DataFormat.
    Import(string json, int startRow) string Imports data into the DataStore buffer with the specified DataFormat, and specifies the starting position of the row.
    Import(string json, int startRow, int endRow) string Imports data into the DataStore buffer with the specified DataFormat, and specifies the start and end positions of the rows.
    Import(string json, int startRow, int endRow, int startColumn) string Imports data into the DataStore buffer with the specified DataFormat, and specifies the start and end positions of the rows and the starting position of the property.
    Import(string json, int startRow, int endRow, int startColumn, int endColumn) string Imports data into the DataStore buffer with the specified DataFormat, and specifies the start and end positions of the rows and the properties.
    ImportByKey(string json) string Imports data into the DataStore buffer with the specified DataFormat based on the key name.
    ImportByKey(string json, int startRow) string Imports data into the DataStore buffer with the specified DataFormat based on the key name, and specifies the starting position of the row.
    ImportByKey(string json, int startRow, int endRow) string Imports data into the DataStore buffer with the specified DataFormat based on the key name, and specifies the start and end positions of the rows.
    Back to top Generated by Appeon