Used to add default template tags. Override to add additional tags.

Built-in tags:

TemplateImageFolder (e.g. "AppName/App_Templates/TemplateNameImages/")

TemplateCssFolder (e.g. "AppName/App_Templates/TemplateNameCss/")

App_ThemesFolder (e.g. "AppName/App_Themes/ThemeName/")

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

Syntax

C#
public virtual string AddDefaultTags(
	string templateName,
	string template,
	Hashtable tagObjectMappingCollection
)
Visual Basic
Public Overridable Function AddDefaultTags ( 
	templateName As String,
	template As String,
	tagObjectMappingCollection As Hashtable
) As String
Visual C++
public:
virtual String^ AddDefaultTags(
	String^ templateName, 
	String^ template, 
	Hashtable^ tagObjectMappingCollection
)
F#
abstract AddDefaultTags : 
        templateName : string * 
        template : string * 
        tagObjectMappingCollection : Hashtable -> string 
override AddDefaultTags : 
        templateName : string * 
        template : string * 
        tagObjectMappingCollection : Hashtable -> string 

Parameters

templateName
Type: System..::..String
Template name
template
Type: System..::..String
Template content
tagObjectMappingCollection
Type: System.Collections..::..Hashtable
Tag mapping hashtable

Return Value

Type: String
Template content with any of the custom tags added

See Also