Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 629 Bytes

File metadata and controls

20 lines (18 loc) · 629 Bytes

DialMyCalls.com NET SDK

A NET library for interacting with the DialMyCalls.com REST API.

Requirements

  • Microsoft Visual Studio 2012 and later
  • .NET Framwork 4.5

Composer Installation

The DialMyCalls.com NET SDK can be included as an assembly into your project. Get the source code and add NETAPI assembly into your solution. Include DialMyCalls namespase. For calling a service create a Client:

var client = new Client(APIKey);
var service = new Service.Call(client);
service.Create(...);