Unosquare
    Show / Hide Table of Contents

    Class GridDataResponse

    Represents a Data Response to a Tubular Grid.

    This model is how Tubular Grid expects data to any server.

    Inheritance
    System.Object
    GridDataResponse
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Unosquare.Tubular
    Syntax
    public class GridDataResponse

    Properties

    AggregationPayload

    A dictionary with the aggregation functions.

    Declaration
    public Dictionary<string, object> AggregationPayload { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.Dictionary<System.String, System.Object>

    Counter

    Response's counter.

    Declaration
    public int Counter { get; set; }
    Property Value
    Type Description
    System.Int32

    CurrentPage

    Set which page is sent.

    Declaration
    public int CurrentPage { get; set; }
    Property Value
    Type Description
    System.Int32

    FilteredRecordCount

    Set how many records are in the filtered set.

    Declaration
    public int FilteredRecordCount { get; set; }
    Property Value
    Type Description
    System.Int32

    Payload

    A list of object's list with all the rows.

    Declaration
    public List<List<object>> Payload { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.List<System.Collections.Generic.List<System.Object>>

    TotalPages

    Set how many pages are available.

    Declaration
    public int TotalPages { get; set; }
    Property Value
    Type Description
    System.Int32

    TotalRecordCount

    Set how many records are in the entire set.

    Declaration
    public int TotalRecordCount { get; set; }
    Property Value
    Type Description
    System.Int32

    Comments

    Back to top Copyright © 2017-2019 Unosquare