Show / Hide Table of Contents

    Class FeedResult.FeedItem

    Actual FeedItem type

    Inheritance
    System.Object
    FeedResult.FeedItem
    Implements
    IHaveRawContent
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Sloader.Result.Types
    Assembly: Sloader.Result.dll
    Syntax
    public class FeedItem : IHaveRawContent

    Properties

    View Source

    CommentsCount

    Some blog systems publish the comment count for this blogpost

    It's not defined in the standard, but it is a "known" extension for feeds.

    Declaration
    public int CommentsCount { get; set; }
    Property Value
    Type Description
    System.Int32
    View Source

    FacebookCount

    If SocialMedia loading is active, Sloader tries to get the current FB-like count for the given blogpost URL.

    Declaration
    public int FacebookCount { get; set; }
    Property Value
    Type Description
    System.Int32
    View Source

    Href

    URL for the given blogpost etc.

    Declaration
    public string Href { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    PublishedOn

    Date from FeedItem, e.g. publishing date

    Declaration
    public DateTime PublishedOn { get; set; }
    Property Value
    Type Description
    System.DateTime
    View Source

    RawContent

    JSON serialized complete feeditem

    Declaration
    public string RawContent { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Summary

    Summary Text, e.g. Blogpost summary

    Declaration
    public string Summary { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Title

    Title Text, e.g. Blogpost title

    Declaration
    public string Title { get; set; }
    Property Value
    Type Description
    System.String

    Implements

    IHaveRawContent
    • View Source
    Back to top Sloader - MIT License