How to install license file
After purchase of developer license you should receive Inetlab.SMPP.license file per E-Mail. Also you can always generate a license file with your InetLab Account. It allows for Source Code license owners to add and update NuGet package in their projects.
From Embedded Resources
Add this file into the root of project where you have a reference on Inetlab.SMPP.dll. Change "Build Action" of the file to "Embedded Resource".
Set license before using Inetlab.SMPP classes in your code:
Inetlab.SMPP.LicenseManager.SetLicense(this.GetType().Assembly.GetManifestResourceStream(this.GetType(), "Inetlab.SMPP.license"));
From string variable
Open your license file with any text editor and copy and paste the content into the string variable in your code.
Set license before using Inetlab.SMPP classes in your code:
string licenseContent = @"
-----BEGIN INETLAB LICENSE------
EBAXG23FO4BR23LJMNAGCZLMFZQXG23F
GY4DEMJTG43DGBMAQFD4DPHQ2UEANACB
BY5I4D6XBCAACRUJXKZKI7K2N76CTXSC
NDJP2CIM4KHV5V7VCXT75R4XRDSLZZQS
2NKD6JHCIG4PNPUN5A7G4KRZQSZSNL44
NB2LTYRP5FATRVKCHD26FC64E2TSQFX5
Q6GWNF3HVVQIE2YKOO74C4FVR6HDUGD6
FYO4DHCPCPQ2GY3WQRMOFOXOZQ======
-----END INETLAB LICENSE--------";
Inetlab.SMPP.LicenseManager.SetLicense(licenseContent);