ServicePoint
Version: - stringSummary
Returns Service Point location.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ServicePoint")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ServicePoint"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ServicePoint");
}
Outputting the template tag
<!--@ServicePoint-->
Check if string has a value
<!--@If Defined(@ServicePoint)-->
Let's output this tag here: <strong><!--@ServicePoint--></strong>
<!--@EndIf(@ServicePoint)-->