在 Web.config 中設定授權金鑰

This article was translated from English: Does it need improvement?
Translated
View the article in English

The problem has been resolved as of IronBarcode version 2024.3.2.

Exception: Unhandled exception. IronSoftware.Exceptions.LicensingException: IronBarcode must be licensed for development.

對於較舊版本的 IronBarcode,特別是那些介於版本之間的 2023.4.12024.3.2,已知存在授權問題於:

  • ASP.NET 專案
  • .NET Framework 版本 >= 4.6.2

    儲存在 Web.config 檔案中的金鑰不會被產品檢索和使用。

變通方法

要解決此問題,建議在程式碼中使用 ConfigurationManagerWeb.config 文件中檢索授權密鑰,然後將其應用於 License.LicenseKey 屬性。

範例:

<configuration>
...
  <appSettings>
    <add key="IronBarCode.LicenseKey" value="IRONBARCODE-MYLICENSE-KEY-1EF01"/>
  </appSettings>
...
</configuration>
XML

通過上述提供的XML文件,我們可以使用ConfigurationManager來檢索授權碼值並將其傳遞給IronBarCode.License.LicenseKey屬性。

using System.Configuration;
using System.Configuration;
Imports System.Configuration
VB   C#

string licenseKey = ConfigurationManager.AppSettings ["IronBarCode.LicenseKey"];

IronBarCode.License.LicenseKey = licenseKey;