IReminderTable.RemoveRow Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RemoveRow(GrainId, String, String) |
Removes a row from the table. |
RemoveRow(GrainReference, String, String) |
Remove a row from the table. |
RemoveRow(GrainId, String, String)
Removes a row from the table.
public System.Threading.Tasks.Task<bool> RemoveRow (Orleans.Runtime.GrainId grainId, string reminderName, string eTag);
abstract member RemoveRow : Orleans.Runtime.GrainId * string * string -> System.Threading.Tasks.Task<bool>
Public Function RemoveRow (grainId As GrainId, reminderName As String, eTag As String) As Task(Of Boolean)
Parameters
- grainId
- GrainId
The grain ID.
- reminderName
- String
The reminder name.
- eTag
- String
The ETag.
Returns
true if a row with grainId
and reminderName
existed and was removed successfully, false otherwise
Applies to
RemoveRow(GrainReference, String, String)
- Source:
- IReminderTable.cs
Remove a row from the table.
public System.Threading.Tasks.Task<bool> RemoveRow (Orleans.Runtime.GrainReference grainRef, string reminderName, string eTag);
abstract member RemoveRow : Orleans.Runtime.GrainReference * string * string -> System.Threading.Tasks.Task<bool>
Public Function RemoveRow (grainRef As GrainReference, reminderName As String, eTag As String) As Task(Of Boolean)
Parameters
- grainRef
- GrainReference
- reminderName
- String
- eTag
- String
Returns
true if a row with grainRef
and reminderName
existed and was removed successfully, false otherwise