Every so often at Rentler we see the error
System.FormatException, String was not recognized as a valid Boolean
in our health monitoring. As it turns out, it looks like our customers are occasionally truncating the end of the url when copy/pasting it elsewhere. It just so happens that a boolean parameter tends to be on the end of the string, and when a customer shares it over some social network we get dumped with error reports.
https://{domain}/search?sid=17403777&nid=651&location=840065&propertytypecode=1&photosonly=fals
We use model binding for everything, so I'm not really sure how to deal with this. I could change the property to a string and attempt to parse it in the controller action, but that's sloppy. Is there any simple, fluent way to get the model binder to TryParse() it and just resolve to false if it can't?
photosonlyas a string parameter instead of a bool, which just returns the result of calling the normal one with a false? – Bobson Oct 15 '12 at 17:58