I am developing a C# WinRT application that makes POST and GET requests to a webserver.
Does anyone know if there is a way to get the Response URI / Address when using a HttpClient object?.
If I use the HttpWebRequest / HttpWebResponse classes, then I can get this information (via the ResponseUri property in HttpWebResponse), but I don't see how to obtain it using the HttpClient / HttpResponseMessage classes.
Thanks