I have a code that makes a post for a url and adds some parameters to the request Header
HttpWebRequest req = WebRequest.Create(new Uri(url)) as HttpWebRequest;
req.Method = "POST";
req.ContentType = "application/x-www-form-urlencoded";
req.Headers.Add("Cache-Control", "no-cache");
req.Headers.Add("X-ICM-API-Authorization", token);
How do I code to read these parameters that are in the header in the Web API?