# C1.Web.Api.DataEngine.DataEngineController.GetRawData

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Web_Api_DataEngine_DataEngineController_GetRawData_" data-uid="C1.Web.Api.DataEngine.DataEngineController.GetRawData*">GetRawData Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Web_Api_DataEngine_DataEngineController_GetRawData_" data-uid="C1.Web.Api.DataEngine.DataEngineController.GetRawData*"></a>
<h4 id="C1_Web_Api_DataEngine_DataEngineController_GetRawData_System_String_System_Nullable_System_Int32__System_Nullable_System_Int32__" data-uid="C1.Web.Api.DataEngine.DataEngineController.GetRawData(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">GetRawData(string, int?, int?)</h4>
<div class="markdown level1 summary"><p>Gets the raw data.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public virtual IHttpActionResult GetRawData(string dataSourceKey, int? skip = null, int? top = null)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Overridable Function GetRawData(dataSourceKey As String, Optional skip As Integer? = Nothing, Optional top As Integer? = Nothing) As IHttpActionResult</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">dataSourceKey</span></td>
      <td><p>The data source key specifies the data.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>?</td>
      <td><span class="parametername">skip</span></td>
      <td><p>A number value which is used to exclude the first n entities. n is specified by this value</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>?</td>
      <td><span class="parametername">top</span></td>
      <td><p>A number value which indicates the count of the data requested.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><span class="xref">IHttpActionResult</span></td>
      <td><p>The raw data and the total count of all the raw data.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
