Click or drag to resize

AtalasoftConfigSectionLicenseManagerLocker Property

Gets a License Manager component configuration section.

Namespace:  Atalasoft.Shared
Assembly:  Atalasoft.Shared (in Atalasoft.Shared.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public LicenseManagerConfigSection LicenseManagerLocker { get; }

Property Value

Type: LicenseManagerConfigSection
Examples
To configure a number of lock attempts and delay between attempts, you should create app.config file as in the following example:
<?xml version="1.0" encoding="utf-8" ?>
 <configuration>
   <configSections>
     <section name="Atalasoft"
                 type="Atalasoft.Shared.AtalasoftConfigSection, Atalasoft.Shared"/>
  </configSections>

  <Atalasoft>
    <LicenseManager LockRetryTimeout="3000" LockRetryCount="10"/>
  </Atalasoft>
</configuration>
See Also