Method DeleteRow
DeleteRow(SLProtocol, int, string[])
Removes the specified rows from the specified table.
public static int DeleteRow(SLProtocol protocol, int tableId, string[] rows)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
rows
string[]The primary keys of the rows to remove.
Returns
- int
The number of remaining rows in the table.
Remarks
This method acts as a wrapper for a NotifyProtocol type 156 call NT_DELETE_ROW.
DeleteRow(SLProtocol, int, int)
Removes the specified row from the specified table.
public static int DeleteRow(SLProtocol protocol, int tableId, int row)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
row
intThe index of the row.
Returns
- int
The number of remaining rows in the table.
Remarks
This method acts as a wrapper for a NotifyProtocol type 156 call NT_DELETE_ROW.
DeleteRow(SLProtocol, int, string)
Removes the specified row from the specified table.
public static int DeleteRow(SLProtocol protocol, int tableId, string rowKey)
Parameters
protocol
SLProtocolInstance that implements SLProtocol.
tableId
intThe ID of the table parameter.
rowKey
stringThe primary key of the row to remove.
Returns
- int
The number of remaining rows in the table.
Remarks
This method acts as a wrapper for a NotifyProtocol type 156 call NT_DELETE_ROW.