ModelStateDictionary.MaxAllowedErrors 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置此 实例 ModelStateDictionary中允许的最大模型状态错误。
默认为 200
。
public:
property int MaxAllowedErrors { int get(); void set(int value); };
public int MaxAllowedErrors { get; set; }
member this.MaxAllowedErrors : int with get, set
Public Property MaxAllowedErrors As Integer
属性值
注解
ModelStateDictionary 跟踪通过调用 AddModelError(String, Exception, ModelMetadata) 或 TryAddModelError(String, Exception, ModelMetadata)添加的模型错误数。 达到 的值 MaxAllowedErrors - 1
后,如果再次尝试添加错误,则将忽略错误消息并 TooManyModelErrorsException 添加 。
通过直接修改 ModelStateEntry 添加的错误不计入此限制。