.UrlEncode(... bool lowerCase = true)
Possibility to choose UPPER Casing for URL Encoding's ie %2F, as many public API using OAuth use upper cased encoding for signing.
3
votes

An optional `upperCase` flag was added on UrlEncode to change case of urlencoded chars.
-
daniel halan commented
Discovered this when building our own API that impl. OAuth
-
I've just implemented this feature in this commit:
https://github.com/ServiceStack/ServiceStack.Text/commit/302a60b9ea943f0fd7d9e359ed4bec18d6c4d65aIs there a known issue with ServiceStack OAuth Providers where we should be using this in the SS code-base?