public override void OnSetValue(PropertyInterceptionArgs <string> args)
 {
     Console.WriteLine("OnSetValue of AnotherPropertyInterceptionAspect");
     args.ProceedSetValue();
 }
Пример #2
0
 public override void OnSetValue(PropertyInterceptionArgs <List <AspectJoinPoints> > args)
 {
     args.Value.Add(AspectJoinPoints.SetPropertyInterception);
     args.ProceedSetValue();
 }
 public override void OnSetValue(PropertyInterceptionArgs <string> args)
 {
     Console.WriteLine("OnSetValue {0}", args.Property.Name);
     Console.WriteLine("Value {0}", args.Value);
     args.ProceedSetValue();
 }