1 2 3 4 5 6 7 8 9 10 11 12 13
using NCC.Dependency; using System; namespace Microsoft.AspNetCore.Mvc { /// <summary> /// 跳过验证 /// </summary> [SuppressSniffer, AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)] public sealed class NonValidationAttribute : Attribute { } }