IReminderTable.RemoveRow 方法

定义

重载

RemoveRow(GrainId, String, String)

从表中删除行。

RemoveRow(GrainReference, String, String)

从表中删除行。

RemoveRow(GrainId, String, String)

从表中删除行。

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)

参数

grainId
GrainId

粒度 ID。

reminderName
String

提醒名称。

eTag
String

ETag。

返回

如果具有 grainIdreminderName 的行已成功删除,则为 true;否则为 false

适用于

RemoveRow(GrainReference, String, String)

Source:
IReminderTable.cs

从表中删除行。

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)

参数

grainRef
GrainReference
reminderName
String
eTag
String

返回

如果具有 grainRefreminderName 的行已成功删除,则为 true;否则为 false

适用于