TransactedPropertyTSetValue 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: 24.2.419.0 (24.2.419.0)
Syntax public 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.FoundationTransaction
The transaction in which to set the value. - value
- Type: T
The new value of the property.
Remarks See Also