例子

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
public class RedirectingActionAttribute : ActionFilterAttribute

但是如果我们不使用 AttributeUsage ,那么 ActionFilterAttribute 的默认值是多少。我在谷歌搜索,但我找不到它。

最佳答案

这是 ActionFilterAttribute 的默认值

[System.AttributeUsage(System.AttributeTargets.All,
                   AllowMultiple = false,
                   Inherited = true)]

关于C# ActionFilterAttribute 什么是默认的 AttributeUsage,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29029238/

10-11 23:05