Web API Edition | ComponentOne
C1.Web.Api.DataEngine Namespace / DataEngineController Class / GetRawData Method
The data source key specifies the data.
A number value which is used to exclude the first n entities. n is specified by this value
A number value which indicates the count of the data requested.

In This Topic
    GetRawData Method
    In This Topic
    Gets the raw data.
    Syntax
    'Declaration
     
    
    <HttpGetAttribute()>
    <RouteAttribute("{dataSourceKey}")>
    Public Overridable Function GetRawData( _
       ByVal dataSourceKey As String, _
       Optional ByVal skip As Nullable(Of Integer), _
       Optional ByVal top As Nullable(Of Integer) _
    ) As IHttpActionResult
    [HttpGet()]
    [Route("{dataSourceKey}")]
    public virtual IHttpActionResult GetRawData( 
       string dataSourceKey,
       Nullable<int> skip,
       Nullable<int> top
    )

    Parameters

    dataSourceKey
    The data source key specifies the data.
    skip
    A number value which is used to exclude the first n entities. n is specified by this value
    top
    A number value which indicates the count of the data requested.

    Return Value

    The raw data and the total count of all the raw data.
    See Also