Consent.Activity.Description

Version: 9.5.0 string  

Summary

Returns description of related consent activity.

Settings

The value is generated automatically.

Examples

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)--> Let's output this tag here: <strong><!--@Consent.Activity.Description--></strong> <!--@EndIf(@Consent.Activity.Description)-->