Search Results for

    Show / Hide Table of Contents

    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 true [is non prefixed name].

    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
    In This Article
    Back to top Copyright © 2020 software architects gmbh