OnePoint.Library.OnePointLibrary 1.0.0

dotnet add package OnePoint.Library.OnePointLibrary --version 1.0.0
                    
NuGet\Install-Package OnePoint.Library.OnePointLibrary -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OnePoint.Library.OnePointLibrary" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OnePoint.Library.OnePointLibrary" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="OnePoint.Library.OnePointLibrary" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OnePoint.Library.OnePointLibrary --version 1.0.0
                    
#r "nuget: OnePoint.Library.OnePointLibrary, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=OnePoint.Library.OnePointLibrary&version=1.0.0
                    
Install OnePoint.Library.OnePointLibrary as a Cake Addin
#tool nuget:?package=OnePoint.Library.OnePointLibrary&version=1.0.0
                    
Install OnePoint.Library.OnePointLibrary as a Cake Tool

API Management System

Adding Custom API

Required Fields:

Sno Field Name Description Required
1 Name Name of the DLL to be executed true
2 Description Description of the DLL false
3 Namespace Namespace of the custom DLL true
4 Version Version of dotnet SDK true
5 DLL Nature Depends upon use case in APIMS true
6 DLL File DLL file to be uploaded true
7 Configuration JSON format object needed for custom API’s Logic true
8 Dynamic Delegates APIMS internal functions to passed on upon execution false

Creating API Example

Note: Configuration must be in valid JSON format needed for your business logic for the given API, which is parsed into a dynamic object with the same properties and values.

Uploaded DLL Example

Parameters Received in Entry Method

Sno Name Description Type
1 param Parameters received by API to be relayed to validation and entry method dynamic
2 config Configuration set when creating the API dynamic
3 merchantInfo API Caller or merchant’s information dynamic
4 insertLog Function taking function name and an object and returning a string id for logging the input string Insert(string, object)
5 updateLog Function for updating log with your transaction id if any and the result with the help of id returned by insertLog void Update(string, string, object)
6 exceptionLog Function for logging exception details string Exception(string, string, object)
7 dynamicDelegates Name and Function pairs of internal APIMS selected functions Dictionary<string, Func<DelegateRequestModel, dynamic>>

Notes:

  1. param: Dynamic object deserialized from the received JSON payload from the API. Properties can be accessed statically (param.propertyname) or dynamically (param["propertyname"].Value).
  2. config: Dynamic object deserialized from the JSON string set when creating the API.
  3. merchantInfo: Dynamic object containing information of merchant or API caller.
  4. insertLog: Delegate function invoked for inserting log in APIMS. Accepts custom function name and custom object, returning inserted log ID as a string.
  5. updateLog: Delegate function invoked for updating the inserted log in APIMS. Accepts inserted log ID, custom transaction ID if any, and a custom object.
  6. exceptionLog: Delegate function invoked for logging exception details in APIMS. Accepts check-point-name, exception object and returns issue ticket ID.
  7. dynamicDelegates: Dictionary of delegate functions paired with name, when selected can invoke internal APIMS functions.

Extra Steps for Using Third-Party Libraries

  1. Include the third-party referenced DLL file inside the project.
  2. Set the DLL properties to Advanced -> Build Action -> Embedded Resource.
  3. Create a constructor to load the manifest of the embedded resource in the calling assembly.

Note: The constructor remains the same for all DLLs with third-party library references, except for the namespace.

Execution Flow

  1. APIMS checks if the specified namespace and class exist in the uploaded DLL.
  2. APIMS verifies if the specified validation and execution methods exist in the uploaded DLL.
  3. APIMS calls the custom validation method against the received parameters, returning a Dictionary<string,string> of errors if any, or an empty dictionary (Count=0).
  4. If the dictionary is empty, APIMS calls the entry method with the seven specified parameters and returns its result. Otherwise, it displays the error messages.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 206 a month ago