# IReminderTable.ReadRows(uint, uint, CancellationToken)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.iremindertable/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.iremindertable/methods/)

[Source](https://github.com/dotnet/orleans/blob/1644940b035c7bdf215a4fd7135757c06bcfe9ec/src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs#L64)

```csharp
public virtual Task<ReminderTableData> ReadRows(uint begin, uint end, CancellationToken cancellationToken)
```

Returns all rows whose grain hash is in the specified range.

### Parameters

- `begin` (`uint`): The exclusive lower bound.
- `end` (`uint`): The inclusive upper bound.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

The reminder table entries which fall within the specified range.
