# IReminderRegistry.GetReminder(GrainId, string, CancellationToken)

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

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

```csharp
public virtual Task<IGrainReminder?> GetReminder(GrainId callingGrainId, string reminderName, CancellationToken cancellationToken)
```

Gets a reminder registered to the specified grain.

### Parameters

- `callingGrainId` (`GrainId`): The ID of the currently executing grain.
- `reminderName` (`string`): The reminder name.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

The reminder, or `null` if it was not found.
