Hi, I've used your lib recently and it works great.
While using, I see that it's not a good practice to add the Attribute to the Class, I wonder if you can support then I can declare it in Interface?
Like this:
public interface MyInterface()
{
[MyInterceptorAttribute]
void MyMethod();
}
public class MyClass() : MyInterface
{
void MyMethod()
{
}
}
Hi, I've used your lib recently and it works great.
While using, I see that it's not a good practice to add the Attribute to the Class, I wonder if you can support then I can declare it in Interface?
Like this: