In This Article

ParseDataPropertyChangedEventArgs Class

Provides event arguments for a property change event, indicating the old and new values.

public class ParseDataPropertyChangedEventArgs : PropertyChangedEventArgs<IParseData>
Inheritance:
object EventArgs PropertyChangedEventArgs<IParseData> object

Constructors

ParseDataPropertyChangedEventArgs(IParseData, IParseData)

Initializes a new instance of the ParseDataPropertyChangedEventArgs class.

public ParseDataPropertyChangedEventArgs(IParseData oldValue, IParseData newValue)
Parameter Type Description
oldValue IParseData

The previous value of the property being tracked as reported by an event.

newValue IParseData

The new value of the property being tracked as reported by an event.

Inherited Members