You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = true)]
public class TracingAspect : OnMethodBoundaryAspect
But it is only applied when it's attributed to a derived class or method. I'd like to have it on a base class, and inherited by all derived classes.
Base class in my case serves only as a shared code "distributor", it doesn't have any inherited/overridden methods.
The text was updated successfully, but these errors were encountered:
I have this:
But it is only applied when it's attributed to a derived class or method. I'd like to have it on a base class, and inherited by all derived classes.
Base class in my case serves only as a shared code "distributor", it doesn't have any inherited/overridden methods.
The text was updated successfully, but these errors were encountered: