The network limit allows you to configure network or floating licenses in your app. Floating licenses allows to configure how many instances of your app can run concurrently with a specific license.
The process to control the number of apps running is done using two methods in the LicenseSpot Framework:
Using this two based methods you can easily configure floating licenses in your app.
This is how it’s done in the Framework:
C#
ExtendedLicense license = ExtendedLicenseManager.GetLicense(typeof(Form1), this,"PUBLIC_KEY"); //paste your public key from Key Pairs
license.CheckIn()
//do work
license.CheckOut()
VB.NET
Dim license as ExtendedLicense
license = ExtendedLicenseManager.GetLicense(Me.GetType(), Me, "your public key")
license.CheckIn()
'do work
license.CheckOut()
Keep in mind you have to decide when these methods are best executed in your app. For example, if no action can be done in the app unless a valid license is checked out, the call the CheckOut method as soon as the app starts and don’t allow usage unless the return is valid.
Morbi quam odio, ultrices a libero sit amet, lacinia commodo quam. Curabitur sodales ornare ex, eu sodales elit venenatis non.
Morbi quam odio, ultrices a libero sit amet, lacinia commodo quam. Curabitur sodales ornare ex, eu sodales elit venenatis non.
Morbi quam odio, ultrices a libero sit amet, lacinia commodo quam. Curabitur sodales ornare ex, eu sodales elit venenatis non.
Morbi quam odio, ultrices a libero sit amet, lacinia commodo quam. Curabitur sodales ornare ex, eu sodales elit venenatis non.
Morbi quam odio, ultrices a libero sit amet, lacinia commodo quam. Curabitur sodales ornare ex, eu sodales elit venenatis non.
Morbi quam odio, ultrices a libero sit amet, lacinia commodo quam. Curabitur sodales ornare ex, eu sodales elit venenatis non.