# IReminderRegistry.GetReminder(GrainId, string)

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

```csharp
public abstract Task<IGrainReminder> GetReminder(GrainId callingGrainId, string reminderName)
```

Gets the reminder with the specified name which is registered to the currently active grain.

### Parameters

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

### Returns

The reminder.
