Is there a .NET library for the W3C markup validator API?

I want to confirm that users of my WPF application put the correct XHTML in their TextBox control.

I found that the API for W3C is a markup validator .

The web page says:

Building libraries used to interact with the authentication API is encouraged. & Hellip;

and it lists the famous Perl, PHP / PEAR, and ColdFusion libraries.

Does anyone know about the .NET library for the W3C markup parser API? Does it already exist?

+3
source share
2 answers

This API is based on SOAP. If you want to use it in a .net application, you can simply add a website link and code to it. It seems simple enough as it is basically a single method API ...

+5
source
+1
source

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


All Articles