kinpro / connect-sdk-dotnet

Ingenico Connect .NET Server SDK

Home Page:https://developer.globalcollect.com/documentation/sdk/server/dotnet/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ingenico Connect .NET SDK

Introduction

The .NET SDK helps you to communicate with the Ingenico Connect Server API. It's primary features are:

  • convenient C# wrapper around the API calls and responses
    • marshalls C# request objects to HTTP requests
    • unmarshalls HTTP responses to C# response objects or C# exceptions
  • handling of all the details concerning authentication
  • handling of required meta data

Its use is demonstrated by an example for each possible call. The examples execute a call using the provided API keys.

See the Ingenico Connect Developer Hub for more information on how to use the SDK.

Structure of this repository

This repository consists out of four main components:

  1. The source code of the SDK itself: /connect-sdk-dotnet
  2. The source code of the SDK unit tests: /connect-sdk-dotnet-tests
  3. The source code of the example integration tests: /connect-sdk-dotnet-it
  4. The source code of the example calls: /connect-sdk-dotnet-examples

Requirements

.NET Framework 4.5 is required. In addition, the following packages are required:

Installation

Release

To install the latest .NET SDK release, run the following command in the Package Manager Console (Tools -> NuGet Package Manager -> Package Manager Console) in Visual Studio:

PM> Install-Package connect-sdk-dotnet

Source

To install the latest .NET SDK source in a solution, clone the repository, and add the file connect-sdk-dotnet.csproj to the current solution. On the project depending on the Ingenico Connect SDK, add a reference to the connect-sdk-dotnet project.

Note that you will need an IDE that supports version 6.0 of the C# language, such as Visual Studio 2015. Older versions will not be able to compile the SDK code, but they will be able to use the SDK as a dependency, e.g. through NuGet.

Building the repository

This repository uses Visual Studio 2015 or up to build. Open connect-sdk-dotnet.sln in Visual Studio, and click build.

About

Ingenico Connect .NET Server SDK

https://developer.globalcollect.com/documentation/sdk/server/dotnet/

License:MIT License


Languages

Language:C# 100.0%