Ufxtract

Powerful, easy to use .Net microformats parser

Output to XML

The UfDataToXml convertor allows you to output an XML structure into an OutputStream from the parsed microformts.

Code example

using UfXtract;

string url = "http://www.glennjones.net/about/";

UfWebRequest webRequest = new UfWebRequest();
webRequest.Load(url, UfFormats.HCard());

if (webRequest.Data.Nodes.Count > 0)
{
   UfDataToXml dataConvertor = new UfDataToXml();
   Response.ContentType = "text/xml";
   dataConvertor.Convert(webRequest.Data, Response.OutputStream);
}
Download Code MIT Open Source License About the UfXtract .Net library

Output formats

Formats

Inputs

.Net

Reporting and Errors