My request URL is: http://domain.com/some/path%2Fescaped.
I want to retrieve this exact URL. I do NOT want it decoded, like http://domain.com/some/path/escaped; I want it encoded like http://domain.com/some/path%2Fescaped.
How do I get this URL? I have tried Request.Path, Request.RawUrl, Request.Url.AbsoluteUri, Request.Url.OriginalString...each provide the URL decoded, like http://domain.com/some/path/escaped.
I can get this in PHP with $_SERVER["REQUEST_URI"].