ASP.NET MVC 2: Where is ModelState.AddUnhandledError Defined?
I've seen ModelState.AddUnhandledError
in a few开发者_如何学Python code samples, but it doesn't seem to be part of the ModelStateDictionary
class. Presumably it's an extension method?
Is this a standard part of MVC? Anyone know where this is defined?
No, this is not part of the standard MVC. Presumably it's a custom defined extension method.
精彩评论