Class License
Allows IronPrint license keys to be applied globally across an application.
Inheritance
Namespace: IronPrint
Assembly: IronPrint.dll
Syntax
public static class License : Object
Activating IronPrint across an application runs through License, the static entry point for license keys. Set License.LicenseKey to your key once at application startup, before any printing call, and the key applies globally for the process. A valid license removes the trial limits from printed output.
Three more members support the workflow. License.IsLicensed returns whether a valid key is currently applied, which is useful as a startup smoke test. License.IsValidLicense(string licenseKey) checks a key string without applying it, so a configuration value can be validated before it is set. License.DisableAppAnalytics() opts the application out of anonymous usage reporting.
Because the members are static, set the key in one place such as Program.cs or a startup hook rather than per print job. Confirm IsLicensed returns true in a smoke test so a missing or mistyped key surfaces during development instead of in production. The license keys guide explains where to obtain and place the key.
using IronPrint;
License.LicenseKey = "IRONPRINT.MYLICENSE.KEY.1EF01";
bool licensed = License.IsLicensed;The get started guide covers first-run setup, and the IronPrint documentation collects the printing how-tos a licensed project will use next.
Properties
IsLicensed
Determines whether this instance of IronPrint 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/Print/licensing/ and https://ironsoftware.com/csharp/Print/docs/license/license-keys/
Declaration
public static bool IsLicensed { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
LicenseKey
Get Licensed at https://ironsoftware.com/csharp/Print/licensing/
For .Net framework applications, a license key can alternatively be
added to Web.Config or App.Config XML file using
<add key="IronPrint.LicenseKey" value="IRONPrint-LICENSE-KEY"/>
within the appSettings node.
See https://ironsoftware.com/csharp/Print/docs/license/license-keys/
For .Net Core applications, a license key may be added to
appsettings.json where the key name is "IronPrint.LicenseKey"
and the value is a valid IronPrint trial or full license key.
See https://ironsoftware.com/csharp/Print/licensing/ for licensing options.
Declaration
public static string LicenseKey { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
DisableAppAnalytics()
Disables AppAnalytics for IronPrint. Limitations apply.
Declaration
public static void DisableAppAnalytics()
IsValidLicense(String)
Determines whether a string license is valid upon the validation process
------------------------------------------------
Usage:
bool checkValidLicense = IronPrint.License.IsValidLicense(IronPrint.License.LicenseKey);
------------------------------------------------
Declaration
public static bool IsValidLicense(string licenseKey)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | licenseKey | IronPrint license key as a string |
Returns
| Type | Description |
|---|---|
| System.Boolean |
|
Remarks
Important Notes:
❗ Validation Behavior: This method will return false for expired keys, even if they were previously valid. This includes:
- Expired TEAM KEY
- Expired Subscription Key
- Expired Enterprise Key
🗝️ Get a Trial Key: Learn more and get a trial key
🗝️ Commercial Licensing: View commercial licensing options
📚 API Reference:Full API Documentation