TransactedPropertyChangedEventArgsT Constructor |
Initializes a new instance.
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 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 -> TransactedPropertyChangedEventArgs
Parameters
- 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