Class License
Allows IronBarCode license keys to be applied globally across an application.
Inheritance
Namespace: IronBarCode
Assembly: IronBarCode.dll
Syntax
public static class License : Object
Properties
IsLicensed
Determines whether this instance of IronBarCode is Licensed.
Will return false
unless a LicenseKey
is set to a valid trial or full license key in
LicenseKey property, Web.Config
,
App.Config
or appsettings.json
in .Net Core.
See https://ironsoftware.com/csharp/barcode/licensing/ and https://ironsoftware.com/csharp/barcode/docs/license/license-keys/
Declaration
public static bool IsLicensed { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
LicenseKey
Get Licensed at https://ironsoftware.com/csharp/barcode/licensing/
For .Net framework applications, a license key can alternatively be
added to Web.Config
or App.Config
XML file using
<add key="IronBarCode.LicenseKey" value="IRONBARCODE-LICENSE-KEY"/>
within the appSettings node.
See https://ironsoftware.com/csharp/barcode/docs/license/license-keys/
For .Net Core applications, a license key may be added to
appsettings.json
where the key name is "IronBarCode.LicenseKey"
and the value is a valid IronBarCode trial or full license key.
See https://ironsoftware.com/csharp/barcode/licensing/ for licensing options.
Declaration
public static string LicenseKey { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
DisableAppAnalytics()
Disables AppAnalytics for IronBarCode. Limitations apply.
Declaration
public static void DisableAppAnalytics()
IsValidLicense(String)
Determines whether a string license key is valid.
See https://ironsoftware.com/csharp/barcode/licensing/ for trial, development and commercial deployment licensing options.
Declaration
public static bool IsValidLicense(string licenseKey)
Parameters
Type | Name | Description |
---|---|---|
System.String | licenseKey | IronBarCode license key as a string |
Returns
Type | Description |
---|---|
System.Boolean |
|