Validates the tenant subscription package whether it contains the given module name.
Namespace: CelloSaaS.ServiceContracts.LicenseManagementAssembly: CelloSaaS.ServiceContracts (in CelloSaaS.ServiceContracts.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax
Parameters
- moduleNameAccessed
- Type: System String
Module Name(Mandatory)
- tenantId
- Type: System String
Tenant Identifier(Mandatory)
Return Value
Type: BooleanThe True/False value
Exceptions
Exception | Condition |
---|---|
System ArgumentNullException | Throws ArgumentNullException if any mandatory argument is null or empty |
CelloSaaS.ServiceContracts.LicenseManagement LicenseException | Throws LicenseException if any errors occurs in module license validate |
Examples
public void ValidateModuleLicense() { string moduleName = "User"; string tenantId = "B590CD25-3093-DF11-8DEB-001EC9DAB123"; ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>(); bool validModule = licenseService.ValidateModuleLicense(moduleName, tenantId); }
See Also