6 references to DefaultMaxRecursionDepth
Microsoft.AspNetCore.Mvc.Abstractions (4)
ModelBinding\ModelStateDictionary.cs (4)
51
: this(maxAllowedErrors, maxValidationDepth:
DefaultMaxRecursionDepth
, maxStateDepth:
DefaultMaxRecursionDepth
)
77
dictionary?.MaxValidationDepth ??
DefaultMaxRecursionDepth
,
78
dictionary?.MaxStateDepth ??
DefaultMaxRecursionDepth
)
Microsoft.AspNetCore.Mvc.Abstractions.Test (2)
ModelBinding\ModelStateDictionaryTest.cs (2)
1738
Assert.Equal(ModelStateDictionary.
DefaultMaxRecursionDepth
, dictionary.MaxValidationDepth);
1739
Assert.Equal(ModelStateDictionary.
DefaultMaxRecursionDepth
, dictionary.MaxStateDepth);