Parses all template tags and generates a proper HTML based on the current template for a blog post

Namespace: MonoSoftware.MonoX.ModuleGallery.Blog
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual Hashtable ParseBlogPostTemplateTags(
	BlogPostEntity post,
	int maxTitleChars,
	int maxDescriptionChars,
	string dateFormatString
)
Visual Basic
Public Overridable Function ParseBlogPostTemplateTags ( 
	post As BlogPostEntity,
	maxTitleChars As Integer,
	maxDescriptionChars As Integer,
	dateFormatString As String
) As Hashtable
Visual C++
public:
virtual Hashtable^ ParseBlogPostTemplateTags(
	BlogPostEntity^ post, 
	int maxTitleChars, 
	int maxDescriptionChars, 
	String^ dateFormatString
)
F#
abstract ParseBlogPostTemplateTags : 
        post : BlogPostEntity * 
        maxTitleChars : int * 
        maxDescriptionChars : int * 
        dateFormatString : string -> Hashtable 
override ParseBlogPostTemplateTags : 
        post : BlogPostEntity * 
        maxTitleChars : int * 
        maxDescriptionChars : int * 
        dateFormatString : string -> Hashtable 

Parameters

post
Type: BlogPostEntity
Blog post
maxTitleChars
Type: System..::..Int32
Max title characters
maxDescriptionChars
Type: System..::..Int32
Max description characters
dateFormatString
Type: System..::..String
Date format string

Return Value

Type: Hashtable
Hashtable with all template tags

See Also