13 lines
344 B
C#
Raw Normal View History

namespace System.Web.ModelBinding {
using System;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public sealed class BindNeverAttribute : BindingBehaviorAttribute {
public BindNeverAttribute()
: base(BindingBehavior.Never) {
}
}
}