BlogEngine.Core.Web.HttpHandlers.FoafPerson.FoafPerson C# (CSharp) Method

FoafPerson() public method

Initializes a new instance of the FoafPerson class.
public FoafPerson ( string id ) : System
id string /// The FOAF person id. ///
return System
        public FoafPerson(string id)
        {
            this.Birthday = string.Empty;
            this.Blog = string.Empty;
            this.Email = string.Empty;
            this.Firstname = string.Empty;
            this.Homepage = string.Empty;
            this.Image = string.Empty;
            this.Lastname = string.Empty;
            this.Name = string.Empty;
            this.Phone = string.Empty;
            this.PhotoUrl = string.Empty;
            this.Rdf = string.Empty;
            this.Title = string.Empty;
            this.Id = id;
        }

Same methods

FoafPerson::FoafPerson ( string id, AuthorProfile ap ) : System
FoafPerson::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
FoafPerson