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" />
<PackageReference Include="OnePoint.Library.OnePointLibrary" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=OnePoint.Library.OnePointLibrary&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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:
param
: Dynamic object deserialized from the received JSON payload from the API. Properties can be accessed statically (param.propertyname
) or dynamically (param["propertyname"].Value
).config
: Dynamic object deserialized from the JSON string set when creating the API.merchantInfo
: Dynamic object containing information of merchant or API caller.insertLog
: Delegate function invoked for inserting log in APIMS. Accepts custom function name and custom object, returning inserted log ID as a string.updateLog
: Delegate function invoked for updating the inserted log in APIMS. Accepts inserted log ID, custom transaction ID if any, and a custom object.exceptionLog
: Delegate function invoked for logging exception details in APIMS. Accepts check-point-name, exception object and returns issue ticket ID.dynamicDelegates
: Dictionary of delegate functions paired with name, when selected can invoke internal APIMS functions.
Extra Steps for Using Third-Party Libraries
- Include the third-party referenced DLL file inside the project.
- Set the DLL properties to
Advanced -> Build Action -> Embedded Resource
. - 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
- APIMS checks if the specified namespace and class exist in the uploaded DLL.
- APIMS verifies if the specified validation and execution methods exist in the uploaded DLL.
- 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
). - 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 | Versions 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.
-
.NETCoreApp 3.1
- Dapper (>= 2.0.123)
- MySqlConnector (>= 1.3.14)
- Newtonsoft.Json (>= 13.0.1)
- Npgsql (>= 7.0.0)
- Oracle.ManagedDataAccess.Core (>= 3.21.4)
- System.Data.SqlClient (>= 4.6.0)
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 |