Class InsertRowRequest
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a request to insert a row at a specific index in a DataBlock.
public class InsertRowRequest
- Inheritance
-
objectInsertRowRequest
Properties
Index
Gets or sets the index where the row should be inserted.
public int Index { get; set; }
Property Value
- int
Values
Gets or sets the values for the new row. The array length must match the number of columns in the DataBlock.
public object[] Values { get; set; }
Property Value
- object[]