OMC:Notification.Name

Version: - string  

Summary

Returns notification name.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("OMC:Notification.Name")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("OMC:Notification.Name"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("OMC:Notification.Name"); }

Outputting the template tag

<!--@OMC:Notification.Name-->

Check if string has a value

<!--@If Defined(@OMC:Notification.Name)--> Let's output this tag here: <strong><!--@OMC:Notification.Name--></strong> <!--@EndIf(@OMC:Notification.Name)-->