# IReminderTable.ReadRow(GrainId, string, 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#L81)

```csharp
public virtual Task<ReminderEntry?> ReadRow(GrainId grainId, string reminderName, CancellationToken cancellationToken)
```

Reads the specified entry.

### Parameters

- `grainId` (`GrainId`): The grain ID.
- `reminderName` (`string`): Name of the reminder.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

The reminder table entry.
