TransactedPropertyChangedEventArgsT Constructor  | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.Infrastructure.Threading
    Assembly:
   AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic TransactedPropertyChangedEventArgs(
	TransactionContext context,
	T oldValue,
	T newValue
)
Public Sub New ( 
	context As TransactionContext,
	oldValue As T,
	newValue As T
)
public:
TransactedPropertyChangedEventArgs(
	TransactionContext^ context, 
	T oldValue, 
	T newValue
)
new : 
        context : TransactionContext * 
        oldValue : 'T * 
        newValue : 'T -> TransactedPropertyChangedEventArgsParameters
- context
 - Type: AGI.FoundationTransactionContext
The TransactionContext to use. - oldValue
 - Type: T
The old value of the property. - newValue
 - Type: T
The new value of the property. 
See Also