C# Class BlogEngine.Core.Web.HttpHandlers.FoafPerson

Temporary class for transmitting FOAF attributes
Show file Open project: rasmuskl/ReSharperCourse Class Usage Examples

Public Methods

Method Description
FoafPerson ( string id ) : System

Initializes a new instance of the FoafPerson class.

FoafPerson ( string id, AuthorProfile ap ) : System

Initializes a new instance of the FoafPerson class.

FoafPerson ( string id, string name, string title, string email, string homepage, string blog, string rdf, string firstname, string lastname, string image, string birthday, string phone ) : System

Initializes a new instance of the FoafPerson class.

Method Details

FoafPerson() public method

Initializes a new instance of the FoafPerson class.
public FoafPerson ( string id ) : System
id string /// The FOAF person id. ///
return System

FoafPerson() public method

Initializes a new instance of the FoafPerson class.
public FoafPerson ( string id, AuthorProfile ap ) : System
id string /// The FOAF id. ///
ap AuthorProfile /// The AuthorProfile. ///
return System

FoafPerson() public method

Initializes a new instance of the FoafPerson class.
public FoafPerson ( string id, string name, string title, string email, string homepage, string blog, string rdf, string firstname, string lastname, string image, string birthday, string phone ) : System
id string /// The FOAF person id. ///
name string /// The FOAF person name. ///
title string /// The title. ///
email string /// The email. ///
homepage string /// The homepage. ///
blog string /// The FOAF person blog. ///
rdf string /// The FOAF person rdf. ///
firstname string /// The firstname. ///
lastname string /// The lastname. ///
image string /// The image. ///
birthday string /// The birthday. ///
phone string /// The phone. ///
return System