Click or drag to resize

TransactedProperty<T>.SetValue Method

Sets the value of this property in the context of the specified transaction. The changed value will not be visible to other transactions until Commit() is called. Calling this method may cause a TransactionConflictException to be raised at Commit() time. See the Remarks section for more information.

Namespace:  AGI.Foundation.Infrastructure.Threading
Assembly:  AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public void SetValue(
	Transaction transaction,
	T value
)

Parameters

transaction
Type: AGI.Foundation.Transaction
The transaction in which to set the value.
value
Type: T
The new value of the property.
Remarks
See Also