dotnet/aspnetcore
Stop using InvalidOperationExceptions to signal invalid ASCII during parsing
Aperta
#4736 aperta il 19 lug 2018
affected-very-fewarea-networkingenhancementfeature-kestrelhelp wantedseverity-nice-to-have
Metriche repository
- Star
- (37.933 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
GetAsciiStringNonNullCharacters() currently throws an InvalidOperationException fo invalid or chacters, and the parsing logic catches these InvalidOperationExceptions at various layers to handle the bad request appropriately.
Ideally we could switch to calling a TryGetAsciiStringNonNullCharacters method, but if propagating failure down the stack proves too difficult, we should at least move to a custom exception type so we don't end up obscuring real product bugs by inadvertently swallowing InvalidOperationExceptions thrown by other methods.