Skip to content

Joinesty/nullafi-csharp-sdk-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Nullafi C# SDK Examples

A C# Application with examples to use the Nullafi C# SDK.

How to use the SDK at your project

Package Manager
PM> Install-Package NullafiSDK
.NET CLI
> dotnet add package NullafiSDK
Paket CLI
> paket add NullafiSDK

The most recent version of the Nullafi C# SDK can be found on Maven Repository.

Getting Started

  • To get started with the Examples, get a API Key from the Configuration page of your app in the Settings Page -> API Key. You can use this token to make calls for your own Nullafi account.

  • All vaults and tokens examples are in NullafiSDKExamples/Examples folder.

  • Run NullafiSDKExamples console project to view all examples working.

using System;

namespace NullafiSDKExamples
{
    class Program
    {
        static readonly string API_KEY = "YOUR_API_KEY";

        public static void Main(String[] args)
        {
            var examples = new Examples.Examples(API_KEY);
            examples.Run().GetAwaiter().GetResult();
            Console.ReadLine();
        }
    }
}

Copyright and License

Copyright 2019 Joinesty, Inc. All rights reserved.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages