Created
April 13, 2012 16:14
-
-
Save VantivSDK/2378013 to your computer and use it in GitHub Desktop.
.NET SDK - Litle Force Capture Transaction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Litle.Sdk; | |
//Force Capture Transaction | |
class Example | |
{ | |
[STAThread] | |
public static void Main(String[] args) | |
{ | |
LitleOnline litle = new LitleOnline(); | |
forceCapture forcecapture = new forceCapture(); | |
forcecapture.amount = 106; | |
forcecapture.orderId = "12344"; | |
forcecapture.orderSource = orderSourceType.ecommerce; | |
cardType card = new cardType(); | |
card.type = methodOfPaymentTypeEnum.VI; | |
card.number = "4100000000000001"; | |
card.expDate = "1210"; | |
forcecapture.card = card; | |
forceCaptureResponse response = litle.ForceCapture(forcecapture); | |
//Display Results | |
Console.WriteLine("Response: " + response.response); | |
Console.WriteLine("Message: " + response.message); | |
Console.WriteLine("Litle Transaction Id: " + response.litleTxnId); | |
Console.ReadLine(); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment