Click here to Skip to main content
15,903,175 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Actually I am java developer where I am using AOP pointcut for some system methods to generate customized method with same signature.
i.e
pointcut ps(String s,int i1,int i2)  : call (void java.awt.Graphics.drawString(String,int,int)) && args(s,i1,i2);
 void around(String s,int i1,int i2) : ps(s,i1,i2)
 {
    if()
     {
        //business logic
     }  
    s=image_applet.foo(s);
	
	if()
	 {
	    //Business logic     
	  } 
	
	proceed(s,i1,i2);
 }


I should do same pointcut in .NET using AOP in system inbuild methods.
if it is possible then please give me some direction regarding this.
Thanking you.
Posted
Updated 14-Oct-10 5:12am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900