/// <summary>
 /// Initializes a new <see cref="NotifyPropertyChangeAspect"/>.
 /// </summary>
 /// <param name="propertyName">Name of the property to which this set accessor belong.</param>
 /// <param name="parent">Parent <see cref="NotifyPropertyChangeAttribute"/>.</param>
 public NotifyPropertyChangeAspect(string propertyName, NotifyPropertyChangeAttribute parent, bool logging)
 {
     AspectPriority    = parent.AspectPriority;
     this.propertyName = propertyName;
     this.logging      = logging;
 }
예제 #2
0
 public BubblePropertyChangeFieldAspect(string fieldName, NotifyPropertyChangeAttribute parent,
                                        bool enableLogging)
 {
     AspectPriority = parent.AspectPriority;
 }