Used in templating, parses the template and builds a hashtable with placeholder as a key and a value to replace it as a value.

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

Syntax

C#
protected virtual void ParseTemplateTags(
	Hashtable tags,
	SnAlbumEntity album,
	VelocityContext velocityContext
)
Visual Basic
Protected Overridable Sub ParseTemplateTags ( 
	tags As Hashtable,
	album As SnAlbumEntity,
	velocityContext As VelocityContext
)
Visual C++
protected:
virtual void ParseTemplateTags(
	Hashtable^ tags, 
	SnAlbumEntity^ album, 
	VelocityContext^ velocityContext
)
F#
abstract ParseTemplateTags : 
        tags : Hashtable * 
        album : SnAlbumEntity * 
        velocityContext : VelocityContext -> unit 
override ParseTemplateTags : 
        tags : Hashtable * 
        album : SnAlbumEntity * 
        velocityContext : VelocityContext -> unit 

Parameters

tags
Type: System.Collections..::..Hashtable
Tags.
album
Type: SnAlbumEntity
Album entity.
velocityContext
Type: VelocityContext
Velocity context.

Return Value

Type:
Hashtable used in the templating process.

See Also