# IReminderTable.RemoveRow(GrainId, string, string, CancellationToken)

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

[Source](https://github.com/dotnet/orleans/blob/1644940b035c7bdf215a4fd7135757c06bcfe9ec/src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs#L115)

```csharp
public virtual Task<bool> RemoveRow(GrainId grainId, string reminderName, string eTag, CancellationToken cancellationToken)
```

Removes a row from the table.

### Parameters

- `grainId` (`GrainId`): The grain ID.
- `reminderName` (`string`): The reminder name.
- `eTag` (`string`): The ETag.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

`true` if the row was removed; otherwise, `false`.
