示例#1
0
 /// <summary>Invoked at compile-time to creates a new <see cref="BplSetterWrapper"/> instance.</summary>
 public BplSetterWrapper(string propertyName, BplTrackingAspect parent) {
    AspectPriority = parent.AspectPriority;
    _propertyName = propertyName;
 }
示例#2
0
 /// <summary>Invoked at compile-time to creates a new <see cref="BplConstructorWrapper"/> instance.</summary>
 public BplConstructorWrapper(Type targetType, BplTrackingAspect parent) {
    _targetType = targetType;
    AspectPriority = parent.AspectPriority;
 }