C#ActionFilterAttribute什么是默认的AttributeUsage

时间:2015-03-13 09:53:19

标签: c#

实施例

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

但如果我们不使用AttributeUsageActionFilterAttribute的默认值是什么。我在谷歌搜索但我找不到它。

1 个答案:

答案 0 :(得分:5)

这是ActionFilterAttribute

的默认值
[System.AttributeUsage(System.AttributeTargets.All,
                   AllowMultiple = false,
                   Inherited = true)]