LicenseManager.AddLicenseData Method (String, String)

Adds license data to the Docotic.Pdf library.

Namespace:  BitMiracle.Docotic
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public static void AddLicenseData(
	string licenseKey,
	string owner
)
VB
Public Shared Sub AddLicenseData ( 
	licenseKey As String,
	owner As String
)

Parameters

licenseKey
Type: System.String
License key.
owner
Type: System.String
The license owner.

Remarks

We recommend adding all license data at the start of your application. It is not recommended to call this method each time before you create a PdfDocument instance.

In classic ASP.NET apps we recommended adding license data in Global.asax.cs. In ASP.NET Core apps we recommend using Program.cs for the same.

You can use HasValidLicense property in any part of your app to make sure a license is applied and is valid.

See Also