wliao008 / buffalo

an aspect oriented programming framework using mono cecil for the .NET platform
1 stars 0 forks source link

Aspect should ignore aspecting itself by default? #1

Closed wliao008 closed 11 years ago

wliao008 commented 11 years ago

Code sample:

    [TraceAspect(AttributeExclude = true)]
    public class TraceAspect : MethodBoundaryAspect
    {
          //blah blah blah
    }

instead of setting to AttributeExclude to true, maybe all aspect should ignore itself by default, or even ignore all other aspect by default.