Returns the icon of the result item extension.
The value is generated automatically.
The value is returned as a HTML code snippet containing an <img>
tag.
Outputting the template tag
@GetString("DwSearchResultIcon")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("DwSearchResultIcon"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("DwSearchResultIcon");
}
Outputting the template tag
<!--@DwSearchResultIcon-->
Check if string has a value
<!--@If Defined(@DwSearchResultIcon)-->