C# Class Subtext.Framework.Components.Trackback

Represents a trackback within this system. This is essentially a comment created via the Trackback/Pingback API.
Inheritance: FeedbackItem
显示文件 Open project: ayende/Subtext Class Usage Examples

Public Methods

Method Description
Trackback ( int entryId, string title, Uri sourceUrl, string author, string body ) : System

Initializes a new instance of the Trackback class.

Trackback ( int entryId, string title, Uri sourceUrl, string author, string body, System.DateTime dateCreated ) : System

Initializes a new instance of the Trackback class.

Method Details

Trackback() public method

Initializes a new instance of the Trackback class.
public Trackback ( int entryId, string title, Uri sourceUrl, string author, string body ) : System
entryId int The parent id.
title string The title.
sourceUrl System.Uri The source URL.
author string The author.
body string The body.
return System

Trackback() public method

Initializes a new instance of the Trackback class.
public Trackback ( int entryId, string title, Uri sourceUrl, string author, string body, System.DateTime dateCreated ) : System
entryId int The parent id.
title string The title.
sourceUrl System.Uri The title URL.
author string The author.
body string The body.
dateCreated System.DateTime The date created.
return System