ModelStateDictionary.MaxAllowedErrors 属性

定义

获取或设置此 实例 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 添加的错误不计入此限制。

适用于