File: ModelBinding\BindRequiredAttribute.cs | |
Project: ndp\fx\src\xsp\system\Web\System.Web.csproj (System.Web) |
namespace System.Web.ModelBinding { using System; [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = false, Inherited = true)] public sealed class BindRequiredAttribute : BindingBehaviorAttribute { public BindRequiredAttribute() : base(BindingBehavior.Required) { } } } |