Method | Description | |
---|---|---|
IsInitialized ( string propName ) : bool | ||
NotifyPropertyChanged ( string property, object oldValue, object newValue ) : void |
Notifies that a property has been changed
|
|
NotifyPropertyChanging ( string property, object oldValue, object newValue ) : void |
Notifies that a property will be changed
|
|
PlaybackNotifications ( ) : void |
Playback all recorded notifications. Only the PropertyChanged event is fired This function does nothing if it is called more then once.
|
|
Recalculate ( string propName ) : void | ||
RecordNotifications ( ) : void |
Records notifications. PropertyChanged & PropertyChanging will not be fired until PlaybackNotifications is called. This function does nothing if it is called more then once.
|
Method | Description | |
---|---|---|
AuditPropertyChange ( string property, object oldValue, object newValue ) : void | ||
LogAudits ( ) : void | ||
OnPropertyChanged ( string property, object oldValue, object newValue ) : void |
Fires PropertyChanged and PropertyChangedWithValue events This method should not be called directy. Use NofityPropertyChanging. |
|
OnPropertyChanging ( string property, object oldValue, object newValue ) : void |
Fires PropertyChanging and PropertyChangingWithValue events. This method should not be called directy. Use NofityPropertyChanging. |
|
SetInitializedProperty ( string propName ) : void | ||
SetModified ( ) : void | ||
SetNotInitializedProperty ( string propName ) : void | ||
ShouldSetModified ( string property ) : bool |
protected AuditPropertyChange ( string property, object oldValue, object newValue ) : void | ||
property | string | |
oldValue | object | |
newValue | object | |
return | void |
public IsInitialized ( string propName ) : bool | ||
propName | string | |
return | bool |
public NotifyPropertyChanged ( string property, object oldValue, object newValue ) : void | ||
property | string | Propertyname |
oldValue | object | old value of the changed property |
newValue | object | new value of the changed property |
return | void |
public NotifyPropertyChanging ( string property, object oldValue, object newValue ) : void | ||
property | string | Propertyname |
oldValue | object | old value of the changing property |
newValue | object | new value of the changing property |
return | void |
protected OnPropertyChanged ( string property, object oldValue, object newValue ) : void | ||
property | string | Propertyname |
oldValue | object | old value of the changed property |
newValue | object | new value of the changed property |
return | void |
protected OnPropertyChanging ( string property, object oldValue, object newValue ) : void | ||
property | string | Propertyname |
oldValue | object | old value of the changed property |
newValue | object | new value of the changed property |
return | void |
public Recalculate ( string propName ) : void | ||
propName | string | |
return | void |
protected SetInitializedProperty ( string propName ) : void | ||
propName | string | |
return | void |
protected SetNotInitializedProperty ( string propName ) : void | ||
propName | string | |
return | void |
protected ShouldSetModified ( string property ) : bool | ||
property | string | |
return | bool |