13 lines
344 B
C#
13 lines
344 B
C#
|
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) {
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|