# GrainReminderExtensions.GetReminders(IGrainBase, CancellationToken)

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

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

```csharp
public static Task<List<IGrainReminder>> GetReminders(this IGrainBase grain, CancellationToken cancellationToken)
```

Returns all reminders registered by the grain.

### Parameters

- `grain` (`IGrainBase`): The grain instance.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

The reminders.
