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)
Syntaxpublic void SetValue(
Transaction transaction,
T value
)
Public Sub SetValue (
transaction As Transaction,
value As T
)
public:
void SetValue(
Transaction^ transaction,
T value
)
member SetValue :
transaction : Transaction *
value : 'T -> unit
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