# LocalReminderScheduleChanged Constructors

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

## LocalReminderScheduleChanged(GrainId, string, object, long, SiloAddress?) {#constructor-orleans-runtime-grainid-string-object-long-orleans-runtime-siloaddre-e29e96ac}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.localreminderschedulechanged/constructors/constructor-orleans-runtime-grainid-string-object-long-orleans-runtime-siloaddre-e29e96ac/)

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

```csharp
public LocalReminderScheduleChanged(GrainId grainId, string reminderName, object identity, long scheduleVersion, SiloAddress? siloAddress)
```

Event payload for when a local reminder schedule is invalidated and must be re-armed.

### 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.
- `scheduleVersion` (`long`): The local schedule version associated with the change.
- `siloAddress` (`SiloAddress?`): The address of the silo handling this reminder.
