Interface IRowProvider
Provides a CurrentRow property.
Useful for single-row tables, and not only.
public interface IRowProvider
- Extension Methods
Properties
CurrentRow
The current row, if any, else null.
DataRow CurrentRow { get; }
Property Value
TableName
The name of the table this provider refers to.
string TableName { get; }
Property Value
Methods
UpdateCurrentRow()
Updates the CurrentRow.
void UpdateCurrentRow()
Events
CurrentRowChanged
Occurs when the CurrentRow changes.
event EventHandler CurrentRowChanged