Credit Method
Credits a cardholder's account.
Syntax
[VB.NET] Public Sub Credit()
[C#] public void Credit();
Remarks
This transaction adds funds to the cardholder's account. This can be performed any time and in any batch, and unlike the Refund method, is not based on a previous transaction.
Manually keyed credit:
component.Card = new GlobalCard("4444333322221111", 1, 2015); component.TransactionAmount = "1.00"; // credits $1.00 component.Credit();