ASP0020: Complex types referenced by route parameters must be parsable
Value | |
---|---|
Rule ID | ASP0020 |
Category | Usage |
Fix is breaking or non-breaking | Non-breaking |
Cause
A route parameter is a complex type that isn't parsable.
Rule description
This diagnostic is emitted when a route parameter is a complex type that isn't parsable.
How to fix violations
To fix a violation of this rule, define a bool TryParse(string, IFormatProvider, out T)
method, where T
is the complex type identified in the error message. As an alternative, implement IParsable<TSelf>.
When to suppress warnings
Do not suppress a warning from this rule.
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.
ASP.NET Core