Using HTML Flexibility Pack on WP7.5

Is there a link / guide for using the HTML Agility Pack on WP7.5? I tried to compile the source code on my VS2010, but I was not able to reference the DLL created on my local machine. Basically, I am looking for a text extractor to get text from a given URL. I understand that the HTML Agility Pack works best. Any ideas / suggestions? Thanks:)

+4
source share
2 answers

Yes, it was I who created this discussion. As said on this talk page, the solution to this problem is to link the System.Xml.XPath DLL with the MSFT SDK \ Silverlight 4.0 \ Client folder. Thanks for the help.

+6
source

What solution did you download? The HAPPhone.sln solution in the latest build is similar to what the phone project should create. You cannot reference any other solutions or DLLs created because they will not compile for the phone.

Jaapjan in the comment, in fact, spoke about this, but using the term "compact framework" for WP7, being technically interchangeable, will throw most people out. Basically, you cannot use DLL.NET 4.0 in the WP7 / Silverlight / CompactFramework assembly because they do not match.

I will conclude this by saying that I have not actually used this, but if I needed it, I would use the HAPPhone solution. If the one you used and the DLLs are not working, another problem may arise.

I think you may also have been those posted to their discussion thread here: http://htmlagilitypack.codeplex.com/discussions/282469 . If so, you answered your question and could give yourself a few points; I will also answer the discussion, because I know that if someone does not beat me ...

+1
source

Source: https://habr.com/ru/post/1385628/


All Articles