IMemoryStorageGrain.DeleteStateAsync 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
DeleteStateAsync(String, String, String) | |
DeleteStateAsync<T>(String, String) |
DeleteStateAsync(String, String, String)
- Source:
- IMemoryStorageGrain.cs
public System.Threading.Tasks.Task DeleteStateAsync (string stateStore, string grainStoreKey, string eTag);
abstract member DeleteStateAsync : string * string * string -> System.Threading.Tasks.Task
Public Function DeleteStateAsync (stateStore As String, grainStoreKey As String, eTag As String) As Task
Parameters
- stateStore
- String
The name of the store that is used to store this grain state.
- grainStoreKey
- String
Store key for this grain.
- eTag
- String
The previous etag that was read.
Returns
Completion promise for the update operation for stored grain state for the specified grain.
Applies to
DeleteStateAsync<T>(String, String)
public System.Threading.Tasks.Task DeleteStateAsync<T> (string grainStoreKey, string eTag);
abstract member DeleteStateAsync : string * string -> System.Threading.Tasks.Task
Public Function DeleteStateAsync(Of T) (grainStoreKey As String, eTag As String) As Task
Type Parameters
- T
Parameters
- grainStoreKey
- String
Store key for this grain.
- eTag
- String
The previous etag that was read.
Returns
Completion promise for the update operation for stored grain state for the specified grain.