C# Class Jot.TrackingOperationEventArgs

Event args for a tracking operation. Enables the handler to cancel the operation and to modify the data that will be persisted/applied.
Inheritance: System.ComponentModel.CancelEventArgs
Mostrar archivo Open project: anakic/Jot Class Usage Examples

Public Methods

Method Description
TrackingOperationEventArgs ( TrackingConfiguration configuration, string property, object value ) : System.ComponentModel

Creates a new instance of TrackingOperationEventArgs.

Method Details

TrackingOperationEventArgs() public method

Creates a new instance of TrackingOperationEventArgs.
public TrackingOperationEventArgs ( TrackingConfiguration configuration, string property, object value ) : System.ComponentModel
configuration TrackingConfiguration The TrackingConfiguration object that initiated the tracking operation.
property string The property that is being persisted or applied to.
value object The value that is being persited or applied.
return System.ComponentModel