Skip to content

Instantly share code, notes, and snippets.

@VantivSDK
Created April 13, 2012 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VantivSDK/2377710 to your computer and use it in GitHub Desktop.
Save VantivSDK/2377710 to your computer and use it in GitHub Desktop.
.NET SDK - Litle Void Transaction
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Litle.Sdk;
//Void Transaction
class Example
{
[STAThread]
public static void Main(String[] args)
{
//litleTxnId contains the Litle Transaction Id returned on the deposit
LitleOnline litle = new LitleOnline();
voidTxn newvoid = new voidTxn();
newvoid.litleTxnId = 100000000000000000;
litleOnlineResponseTransactionResponseVoidResponse voidResponse = litle.DoVoid(newvoid);
//Display Results
Console.WriteLine("Response: " + voidResponse.response);
Console.WriteLine("Message: " + voidResponse.message);
Console.WriteLine("Litle Transaction Id: " + voidResponse.litleTxnId);
Console.ReadLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment