Returns consent status. Can be 'None', 'Given' or 'Withdrawn'.
Consent can be changed to 'Given/Withdrawn' when editing the user profile.
Outputting the template tag
@GetString("Consent.Status")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Consent.Status"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Consent.Status");
}
Outputting the template tag
<!--@Consent.Status-->
Check if string has a value
<!--@If Defined(@Consent.Status)-->