C#: Wrapping methods in other methods

839 Views Asked by At

Is there a way to wrap methods in other methods transparently in C#? I want to achieve what is done by Moose's around functionality: http://search.cpan.org/perldoc?Moose::Manual::MethodModifiers

EDIT: And by transparent I mean without modifying the original method.

5

There are 5 best solutions below

3
On BEST ANSWER

I think you're looking for what's termed Aspect Oriented Programming. There are many C# libraries to help with this. One is called PostSharp (The free version of PostSharp supports this functionality). Here is an example similar to the moose example. This creates a Trace Attribute which you can use on other methods to tack on this extra functionality:

[Serializable]
public class TraceAttribute : OnMethodBoundaryAspect
{

    public override void OnEntry( MethodExecutionArgs args )
    {
        Trace.WriteLine("about to call method");
    }

    public override void OnExit(MethodExecutionArgs args) 
    { 
       Trace.WriteLine("just finished calling method"); 
    }
 }

You would add it to method "Foo" by placing the Trace attribute right before it:

[Trace]
public void Foo() { /* ... */ }

Now when Foo executes, the above OnEntry method will run before it, and OnExit will run right after.

1
On
0
On

No, not the way it's done in Moose. You might want to look into some AOP library.

0
On

You can achieve the same effect by utilizing a dynamic proxy. An example is the Castle Dynamic Proxy.

Such frameworks leverage the C# reflection facilities to construct 'proxy' or 'wrapper' classes. So, keep that in mind. There is a certain amount of overhead because of this. Alternatively you can use frameworks that can create classes statically via code generation.

0
On

Some isolation libraries implement functionality that allows replacing calls to methods with "detours" or mock methods. You may be able to use the same functionality to implement the interception you are referring to. For more details, check the following:

Rhino Mocks stubs and mocks are only good for interfaces?

http://research.microsoft.com/en-us/projects/moles/

http://www.typemock.com/typemock-isolator-product3/