Class EntityObjectPropertyChangedEventArgs
event arguments used by the property changed callback of an EntityObject.
Inheritance
System.Object
EntityObjectPropertyChangedEventArgs
Namespace: TimeCockpit.Data
Assembly: TimeCockpit.Data.dll
Syntax
public class EntityObjectPropertyChangedEventArgs : PropertyChangedEventArgs
Constructors
EntityObjectPropertyChangedEventArgs(String, Object, Object, Boolean)
Initializes a new instance of the EntityObjectPropertyChangedEventArgs class.
Declaration
public EntityObjectPropertyChangedEventArgs(string propertyName, object previousValue, object currentValue, bool isNonPrefixedName)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | the name of the property that changed. |
System.Object | previousValue | the previous value of the property that changed. |
System.Object | currentValue | the current value of the property that changed. |
System.Boolean | isNonPrefixedName | if set to |
Properties
CurrentValue
Gets the current value.
Declaration
public object CurrentValue { get; }
Property Value
Type | Description |
---|---|
System.Object |
IsNonPrefixedName
Gets a value indicating whether this instance was created for a property or relation with or without a prefix.
Declaration
public bool IsNonPrefixedName { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
PreviousValue
Gets the old/previous value, before the change happened.
Declaration
public object PreviousValue { get; }
Property Value
Type | Description |
---|---|
System.Object |