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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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 -> TransactedPropertyParameters
- 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