UserManagement:SecondaryUser.UserAddresses.EmptyList
Version: - stringSummary
Returns True if the user's address list does not have any record.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("UserManagement:SecondaryUser.UserAddresses.EmptyList")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:SecondaryUser.UserAddresses.EmptyList"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:SecondaryUser.UserAddresses.EmptyList");
}
Outputting the template tag
<!--@UserManagement:SecondaryUser.UserAddresses.EmptyList-->
Check if string has a value
<!--@If Defined(@UserManagement:SecondaryUser.UserAddresses.EmptyList)-->
Let's output this tag here: <strong><!--@UserManagement:SecondaryUser.UserAddresses.EmptyList--></strong>
<!--@EndIf(@UserManagement:SecondaryUser.UserAddresses.EmptyList)-->