In a ServiceStack service or filter, is there any way to get access to the NameValueCollection
parsed from a URLEncoded POST content?
While I understand that it is parsed into the DTO as appropriate, sometimes it is valuable to have access to the arbitrary values in the name value collection.
I don't mind having ServiceStack parse and fill the DTO—I just also want to see the raw NameValueCollection
(or equivalent data structure if ServiceStack uses its own parsing mechanism).