Plugin that exposes one or more custom configuration property templates for use in configuring itself.
ITemplatableConfigurablePlugin
is defined in the Telligent.Evolution.Extensibility.Version2
namespace of Telligent.Evolution.Platform.dll
Definition
interface ITemplatableConfigurablePlugin : IConfigurablePlugin, IPlugin { bool PropertyTemplateExists(string templateName); void RenderPropertyTemplate(string templateName, TextWriter writer, IPropertyTemplateOptions options); }
Methods
bool PropertyTemplateExists(string templateName);
Identifies if the template name is supported by this plugin.
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
templateName | string | Template Name | Required |
Return Type
bool
void RenderPropertyTemplate(string templateName, TextWriter writer, IPropertyTemplateOptions options);
Renders the provided property using the provided template.
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
templateName | string | Template Name | Required | ||
writer | TextWriter | Writer | Required | ||
options | IPropertyTemplateOptions | Options | Required |