# LocalReminderStarted Constructors

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.localreminderstarted/)

## LocalReminderStarted(GrainId, string, object, SiloAddress?) {#constructor-orleans-runtime-grainid-string-object-orleans-runtime-siloaddress-nu-11896237}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.localreminderstarted/constructors/constructor-orleans-runtime-grainid-string-object-orleans-runtime-siloaddress-nu-11896237/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Reminders/Diagnostics/ReminderEvents.cs#L132-L137)

```csharp
public LocalReminderStarted(GrainId grainId, string reminderName, object identity, SiloAddress? siloAddress)
```

Event payload for when a silo starts a local timer for a reminder instance.

### Parameters

- `grainId` (`GrainId`): The grain associated with the reminder.
- `reminderName` (`string`): The reminder name.
- `identity` (`object`): The object reference used to correlate this local reminder instance across lifecycle events.
- `siloAddress` (`SiloAddress?`): The address of the silo handling this reminder.
