Dynamic License Validation Rules

  • Create licenses to fit your needs
  • Change rules without re-compiling
  • Custom solutions for your valued customers

Network License Client Limit

The Network License Client Limit connects to the network license server to authorize software usage on the network.

  • Automatically find and connect to license services.
  • Search for network licenses asynchronously.
  • Checkout licenses for mobile workers.

Available only in the Professional Edition


Code Samples

Dim limit = TryCast(_license.Limits(GetType(NetworkLicenseClientLimit)), _
                    NetworkLicenseClientLimit)

Dim monitor = limit.GetMonitor(Nothing)
monitor.Checkout()
var limit = _license.Limits[ typeof( NetworkLicenseClientLimit ) ] 
                      as NetworkLicenseClientLimit;

var monitor = limit.GetMonitor( null );
monitor.Checkout();