AtalasoftConfigSectionLicenseManagerLocker Property |
Gets a License Manager component configuration section.
Namespace:
Atalasoft.Shared
Assembly:
Atalasoft.Shared (in Atalasoft.Shared.dll) Version: 2026.2.0.0.42 (.NET 4.6.2, x86)
Syntaxpublic LicenseManagerConfigSection LicenseManagerLocker { get; set; }Public Property LicenseManagerLocker As LicenseManagerConfigSection
Get
Set
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