Buckaroo.Return_Method

Version: - string  

Summary

Returns method name of the payment.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Buckaroo.Return_Method")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Buckaroo.Return_Method"); }

Outputting the template tag

<!--@Buckaroo.Return_Method-->

Check if string has a value

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