Ufxtract

Powerful, easy to use .Net microformats parser

Output to a String

The UfDataToString convertor allows you to output an indented string representation of 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)
{
    UfDataToString dataConvertor = new UfDataToString();
    Response.Write("<pre>");
    Response.Write(dataConvertor.Convert(webRequest.Data));
    Response.Write("</pre>");
}
Download Code MIT Open Source License About the UfXtract .Net library

Output formats

Formats

Inputs

.Net

Reporting and Errors