TransactedPropertyT Constructor (TransactionContext, Object, T) |
Initializes a new property with a specified context, owner, and value.
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 TransactedProperty(
TransactionContext context,
Object owner,
T value
)
Public Sub New (
context As TransactionContext,
owner As Object,
value As T
)
public:
TransactedProperty(
TransactionContext^ context,
Object^ owner,
T value
)
new :
context : TransactionContext *
owner : Object *
value : 'T -> TransactedProperty
Parameters
- context
- Type: AGI.FoundationTransactionContext
The context in which this property can be read and modified. - owner
- Type: SystemObject
The object that owns this property. - value
- Type: T
The initial value of the property.
See Also