Skip to content

TransactionalStateExtensions Methods

Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.

PerformUpdate(ITransactionalState<TState>, Action<TState>)

staticextension
View source
public static Task PerformUpdate<TState>(this ITransactionalState<TState> transactionalState, Action<TState> updateAction)
Performs an update operation, without returning any result.

Parameters

transactionalStateITransactionalState<TState>
Transactional state to perform update upon.
updateActionAction<TState>
An action that updates the state.