Buckaroo.Signature2
Version: - stringSummary
Returns signature string the payment.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Buckaroo.Signature2")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Buckaroo.Signature2"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Buckaroo.Signature2");
}
Outputting the template tag
<!--@Buckaroo.Signature2-->
Check if string has a value
<!--@If Defined(@Buckaroo.Signature2)-->
Let's output this tag here: <strong><!--@Buckaroo.Signature2--></strong>
<!--@EndIf(@Buckaroo.Signature2)-->