Returns description of related consent activity.
The value is generated automatically.
Outputting the template tag
@GetString("Consent.Activity.Description")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Consent.Activity.Description"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Consent.Activity.Description");
}
Outputting the template tag
<!--@Consent.Activity.Description-->
Check if string has a value
<!--@If Defined(@Consent.Activity.Description)-->