Class BlogItem
Blog Item Object from raw MarkDown format.
Inheritance
System.Object
BlogItem
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: Pagene.Models
Assembly: Pagene.Models.dll
Syntax
public class BlogItem
Properties
| Improve this Doc View SourceContent
Content of the blog item. It is part of static blog post content.
Declaration
public string Content { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreationDate
The time, when the post was created.
Declaration
public DateTime CreationDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Remarks
CreationDate and ModificationDate are from file metadata and may contain invalid data if original file's metadata is invalid. The program doesn't check if the metadata is valid.
ModificationDate
The time, when the post was modified.
Declaration
public DateTime ModificationDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Remarks
CreationDate and ModificationDate are from file metadata and may contain invalid data if original file's metadata is invalid. The program doesn't check if the metadata is valid.
Tags
Tags of the post.
Declaration
public IEnumerable<string> Tags { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> |
Title
Title of the item. This is used for creating blog entry data.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |