Table of Contents

Interface IAssociationPropertyChange

Namespace
NMF.Models.Changes
Assembly
NMF.Models.dll

The public interface for AssociationPropertyChange

[DefaultImplementationType(typeof(AssociationPropertyChange))]
[XmlDefaultImplementationType(typeof(AssociationPropertyChange))]
[ModelRepresentationClass("http://nmf.codeplex.com/changes#//AssociationPropertyChange")]
public interface IAssociationPropertyChange : IAssociationChange, IElementaryChange, IModelChange, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members
Extension Methods

Properties

NewValue

The newValue property

[XmlElementName("newValue")]
[XmlAttribute(true)]
IModelElement NewValue { get; set; }

Property Value

IModelElement

OldValue

The oldValue property

[XmlElementName("oldValue")]
[XmlAttribute(true)]
IModelElement OldValue { get; set; }

Property Value

IModelElement

Events

NewValueChanged

Gets fired when the NewValue property changed its value

event EventHandler<ValueChangedEventArgs> NewValueChanged

Event Type

EventHandler<ValueChangedEventArgs>

NewValueChanging

Gets fired before the NewValue property changes its value

event EventHandler<ValueChangedEventArgs> NewValueChanging

Event Type

EventHandler<ValueChangedEventArgs>

OldValueChanged

Gets fired when the OldValue property changed its value

event EventHandler<ValueChangedEventArgs> OldValueChanged

Event Type

EventHandler<ValueChangedEventArgs>

OldValueChanging

Gets fired before the OldValue property changes its value

event EventHandler<ValueChangedEventArgs> OldValueChanging

Event Type

EventHandler<ValueChangedEventArgs>