Hello. I am using latest build of htmlagilitypack. I downloaded and run the build to get the dll file.
Runtime version : v2.0.50727
Now i am using this method to load web pages
hdMyDoc = hwWeb.Load(srPageUrl);
My question is what is the default timeout for this ? And how can i change the default timeout ?
I am able to override the default encoding like this
hwWeb = new HtmlWeb
{
AutoDetectEncoding = false,
OverrideEncoding = Encoding.GetEncoding("iso-8859-9"),
};
Thanks for the answers.