使用 IronBarcode 許可金鑰

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

如何獲得授權金鑰

添加 IronBarcode 授權金鑰可以讓您在不受限制或水印影響的情況下部署您的項目。

您可以在此購買授權 或註冊一個 免費 30 天試用金鑰在這裡.


步驟1:下載 IronBarcode 的最新版本

立即在您的專案中使用IronBarcode,並享受免費試用。

第一步:
green arrow pointer

透過NuGet安裝

在開始之前,我們需要安裝最新版本的 Barcode NuGet 套件。

Install-Package BarCode

https://www.nuget.org/packages/BarCode/

透過 DLL 安裝

作為替代方案,該 可以下載IronBarcode.dll 並作為參考添加到您的項目中来自 [.NET 條碼 DLL].


步驟2:應用您的授權金鑰

使用代碼設置您的許可權

在您的應用程式啟動時,於使用 IronBarcode 之前添加此代碼。

IronBarCode.License.LicenseKey = "IRONBARCODE-MYLICENSE-KEY-1EF01";
IronBarCode.License.LicenseKey = "IRONBARCODE-MYLICENSE-KEY-1EF01";
IronBarCode.License.LicenseKey = "IRONBARCODE-MYLICENSE-KEY-1EF01"
VB   C#

使用 Web.Config 或 App.Config 設定您的許可證

要在您的應用程序中使用 Web.Config 或 App.Config 全局應用密鑰,請在 appSettings 中將以下密鑰添加到您的配置文件中。

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

IronBarCode 版本之間存在已知的授權問題2023.4.1 - 2024.3.2在專案上:

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

    Web.config 文件中存儲的密鑰被產品識別和使用。 訪問 '在 Web.config 中設定授權金鑰如需了解更多資訊,請參閱故障排除文章。

    確保 IronBarCode.License.IsLicensed 返回 true 以進行驗證。


使用 .NET Core appsettings.json 文件設置您的許可證密鑰

要將密鑰全局應用於您的 .NET Core 應用程式:

  • 在您的項目根目錄中添加一個名為 appsettings.json 的 JSON 文件。
  • 在您的 JSON 配置文件中添加一個 'IronBarCode.LicenseKey' 鍵。該值應為您的許可證鑰匙。
  • 確保檔案屬性包含複製到輸出目錄:總是複製

    檔案:appsettings.json

{

    "IronBarCode.LicenseKey":"IRONBARCODE-MYLICENSE-KEY-1EF01"
}  

步驟三:測試您的金鑰

測試您的金鑰是否已正確安裝。

bool result = IronBarCode.License.IsValidLicense("IRONBARCODE-MYLICENSE-KEY-1EF01");

// Check if IronBarCode is licensed successfully 
bool is_licensed = IronBarCode.License.IsLicensed;
bool result = IronBarCode.License.IsValidLicense("IRONBARCODE-MYLICENSE-KEY-1EF01");

// Check if IronBarCode is licensed successfully 
bool is_licensed = IronBarCode.License.IsLicensed;
Dim result As Boolean = IronBarCode.License.IsValidLicense("IRONBARCODE-MYLICENSE-KEY-1EF01")

' Check if IronBarCode is licensed successfully 
Dim is_licensed As Boolean = IronBarCode.License.IsLicensed
VB   C#

步驟 4:開始您的專案

遵循我們有關如何的教程開始使用IronBarcode.


有問題嗎?

如果您有任何疑問,請與我們聯繫support@ironsoftware.com