Parses all template tags and generates a proper HTML based on the current template.

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

Syntax

C#
protected virtual Hashtable ParseTemplateTags<T>(
	T arguments,
	ref VelocityContext velocityContext
)
where T : SubscribeArgs
Visual Basic
Protected Overridable Function ParseTemplateTags(Of T As SubscribeArgs) ( 
	arguments As T,
	ByRef velocityContext As VelocityContext
) As Hashtable
Visual C++
protected:
generic<typename T>
where T : SubscribeArgs
virtual Hashtable^ ParseTemplateTags(
	T arguments, 
	VelocityContext^% velocityContext
)
F#
abstract ParseTemplateTags : 
        arguments : 'T * 
        velocityContext : VelocityContext byref -> Hashtable  when 'T : SubscribeArgs
override ParseTemplateTags : 
        arguments : 'T * 
        velocityContext : VelocityContext byref -> Hashtable  when 'T : SubscribeArgs

Parameters

arguments
Type: T
Arguments
velocityContext
Type: VelocityContext%
Velocity context

Type Parameters

T
Type of the event arguments

Return Value

Type: Hashtable
Hashtable with all template tags

See Also