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 Hashtable ParseTemplateTags<T>(
	T arguments
)
where T : SubscribeArgs
Visual Basic
Protected Function ParseTemplateTags(Of T As SubscribeArgs) ( 
	arguments As T
) As Hashtable
Visual C++
protected:
generic<typename T>
where T : SubscribeArgs
Hashtable^ ParseTemplateTags(
	T arguments
)
F#
member ParseTemplateTags : 
        arguments : 'T -> Hashtable  when 'T : SubscribeArgs

Parameters

arguments
Type: T
Arguments

Type Parameters

T
Type of the event arguments

Return Value

Type: Hashtable
Hashtable with all template tags

See Also