I believe what you're looking for is:
HttpResponseMessage response = await httpClient.GetAsync(uri);
if (response.Headers.Location == new Uri(some_uri_string)) {
return true;
}
I realize this response is more than a decade late, but I'd thought I'd answer it.