# IReminderService.GetReminder(GrainId, string)

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

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

Gets the reminder registered to the specified grain with the provided name.

### Parameters

- `grainId` (`GrainId`): A reference to the grain which the reminder is registered on.
- `reminderName` (`string`): The name of the reminder.

### Returns

The reminder.
