public void BeforeNavigate2(object pDisp, ref object URL, ref object Flags, ref object TargetFrameName, ref object PostData, ref object Headers, ref bool Cancel)
Does anybody know if I'm extracting header data in a wrong way?
String h = "";
if (Headers != null)
{
h = (string)Headers;
}
Currently I have tested only a few websites but I only get one header. Using fiddler I can se more than one.
Could it be that this is returned in an array. Still if it where an array I would get an error if I try to cast it as a simple string?
Sincerely
Natt