Through my testing, it seems that servicestack is automatically URL decoding any parameters sent through the query string of a GET request, but does not automatically decode params sent via a POST request.
Is there anyway that I can check the HTTP method and decode through my code for POST requests?
EDIT
My methods are derived from a class which implements the RestServiceBase class from Servicestack.net.
Is there any way to check the HTTP method from the current request via RestServiceBase?