Jonathan Magnan

Results 1222 comments of Jonathan Magnan

Hello @craigfowler , Thank you for your feedback. I have hard time to answer to your message (Wrote and erased a lot of time!) since I don't want to start...

Hello @broomop , Everything worked when I tried it. I recommend you to try with `ConfigureAwait(false)`: ```csharp await web.LoadFromWebAsync(html).ConfigureAwait(false) ``` Depending on the type of application, it might be required...

Yes, The test was on windows server 2016 It might also be caused by some security policy on your side. The library is using an `HttpClient`: https://github.com/zzzprojects/html-agility-pack/blob/08694be2d81e552ec87e19082396f5d57d8832c2/src/HtmlAgilityPack.Shared/HtmlWeb.cs#L2364 So perhaps you...

Hello @broomop , Thank you for the information about the `HttpClient` not being thread-safe. I really recommend you to grab the HTML on your side in this case and just...

Hello @Mertsch , This is expected since this is how a `&nbsp` is escaped in `XML`: https://www.freeformatter.com/xml-escape.html There is indeed some change possible that we could do as discussed here:...

Hello @Mertsch , My bad, I just saw the part about the `&nbsp` of your initial post. That `OptionOutputAsXml` is currently very confusing. I will look at it more deeply....

Hello @blankers , Thank you for reporting, We will look at this issue soon. Best Regards, Jonathan

Hello @blankers , Just to let you know we took some time recently to investigate it but unfortunately, we have not been able to find out the cause. We will...

Hello @TonyValenti , Thank you for reporting, I will talk to my developer about your suggestion. Best Regards, Jon --- **Performance Libraries** `context.BulkInsert(list, options => options.BatchSize = 1000); ` [Entity...

Hello @TonyValenti , We are still unsure about this request. There are 2 problems: - Backward compatibility. Doing this change will at 100% break some people code which was working...