ppittle / pMixins

pMixins - Mixin framework for C#
http://pMixins.com
Apache License 2.0
23 stars 5 forks source link

Mechanism for Mixin to add an Interceptor #5

Open ppittle opened 10 years ago

ppittle commented 10 years ago

Example:

[AddInterceptor(typeof(SomeInterceptor))]
public class Mixin
{
   [AddInterceptor(typeof(TraceMethodInterceptor))]
   public void Method(){}
}