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