dotnetcore/AspectCore-Framework

自定义特性 Attribute 使用动态代理后 丢失

wangchaoit opened this issue · 0 comments

我有定义一个Attribuet 如下
public class IntervalAttribute : Attribute
{
///


/// 重复执行时间间隔
///

public int Interval { get; set; }
}
IntervalAttribute 这个特性放在类上面 在这个类使用动态代理以后 这个特性丢失了 导致程序异常执行 望大佬们指教