I have a problem with GetAsync. When i execute the instruction i get this response from fidder.
Debugging I can find all headers except the Transport Header which has a parameter that I need, which is FID. How could I get this one?
Here's the code (myHeader is null):
AddUserAgent();
AddAcceptEncodingHeader();
var mainPageResponseMessage = await
HttpClient.GetAsync(string.Format(Resources.Home, _machineKey));
mainPageResponseMessage.EnsureSuccessStatusCode();
var myHeader= mainPageResponseMessage.Headers.Location;
And here's the answer