Class ResultSetSubset
Class used to represent a subset of results from a query for transmission across JSON RPC
Inheritance
System.Object
ResultSetSubset
Namespace:Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
Assembly:Microsoft.SqlTools.ServiceLayer.dll
Syntax
public class ResultSetSubset
Properties
| Improve this Doc View SourceRowCount
The number of rows returned from result set, useful for determining if less rows were returned than requested.
Declaration
public int RowCount { get; set; }
Type | Description |
---|---|
System.Int32 |
Rows
2D array of the cell values requested from result set
Declaration
public string[][] Rows { get; set; }
Type | Description |
---|---|
System.String[][] |