Events
Ekom.Payments.Events.cs allow your code to subscribe to success/error events from all payment providers.
If you need to subscribe to events only from a specific payment provider, target it’s specific Events like so:
Ekom.Payments.AsynchronousExample.Success += CompleteCheckout;
public void CompleteCheckout(object sender, SuccessEventArgs args)
{
// Perform custom success actions here
}
Last updated