Skip to content

Worldline-Acquiring/acquiring-sdk-dotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Worldline Acquiring .NET SDK

Introduction

The .NET SDK helps you to communicate with the Worldline Acquiring API. Its 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 metadata

See the Worldline Acquiring Documentation 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: /Worldline.Acquiring.Sdk
  2. The source code of the SDK unit tests: /Worldline.Acquiring.Sdk.Tests
  3. The source code of the integration tests: /Worldline.Acquiring.Sdk.IntegrationTests

Requirements

The .NET SDK supports .NET Standard 2.0 and up. The following packages are required:

Installation

Release

Package Manager

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 Worldline.Acquiring.Sdk

.NET CLI

To install the latest .NET SDK release, run the following command:

dotnet add package Worldline.Acquiring.Sdk

Release (Strong-Named)

To install the latest .NET SDK release as a Strong-Named assembly, follow the instructions above but use Worldline.Acquiring.Sdk.StrongName instead of Worldline.Acquiring.Sdk.

Building the repository

This repository uses Visual Studio 2022 to build. Open Worldline.Acquiring.Sdk.sln in Visual Studio, and click build.