Files

38 lines
866 B
C#
Raw Permalink Normal View History

2013-12-19 01:18:38 +01:00
using System;
2013-12-17 22:50:36 +01:00
using System.Collections.Generic;
using System.Xml.Linq;
namespace ReadSharp.Ports.NReadability
{
public class TranscodingResult
{
public TranscodingResult(bool contentExtracted, bool titleExtracted)
{
ContentExtracted = contentExtracted;
TitleExtracted = titleExtracted;
}
public bool ContentExtracted { get; private set; }
public bool TitleExtracted { get; private set; }
public string ExtractedContent { get; set; }
public string ExtractedTitle { get; set; }
public string NextPageUrl { get; set; }
2013-12-19 01:18:38 +01:00
public string ExtractedDescription { get; set; }
public Uri ExtractedImage { get; set; }
public Uri ExtractedFavicon { get; set; }
2013-12-19 21:13:23 +01:00
public string Charset { get; set; }
2013-12-17 22:50:36 +01:00
public XDocument RawDocument { get; set; }
public IEnumerable<XElement> Images { get; set; }
}
}