IronBarcode トラブルシューティング Web.configでのライセンスキーの設定 web.config での IronBarcode ライセンス設定 カーティス・チャウ 更新日:2025年6月1日 IronBarcode をダウンロード NuGet ダウンロード DLL ダウンロード 無料トライアル LLM向けのコピー LLM向けのコピー LLM 用の Markdown としてページをコピーする ChatGPTで開く このページについてChatGPTに質問する ジェミニで開く このページについてGeminiに問い合わせる Grokで開く このページについてGrokに質問する 困惑の中で開く このページについてPerplexityに問い合わせる 共有する Facebook で共有 Xでシェア(Twitter) LinkedIn で共有 URLをコピー 記事をメールで送る This article was translated from English: Does it need improvement? Translated View the article in English <i class="fa-regular fa-circle-check"@--STYLE-ATTR-80--@@> この問題はIronBarcodeの2024.3.2バージョンで解決されました。 Exception: Unhandled exception. IronSoftware.Exceptions.LicensingException: IronBarcode must be licensed for development. 古いバージョンのIronBarcode、具体的には2023.4.1から2024.3.2の間のバージョンには、知られているライセンスの問題があります。 ASP.NETプロジェクト .NET Frameworkバージョン >= 4.6.2 Web.configファイルに保存されたキーが製品によって使用されません。 回避策 この問題を解決するには、コード内でConfigurationManagerを使用してWeb.configファイルからライセンスキーを取得し、それをLicense.LicenseKeyプロパティに適用することをお勧めします。 例: <configuration> ... <appSettings> <add key="IronBarCode.LicenseKey" value="IRONBARCODE-MYLICENSE-KEY-1EF01"/> </appSettings> ... </configuration> <configuration> ... <appSettings> <add key="IronBarCode.LicenseKey" value="IRONBARCODE-MYLICENSE-KEY-1EF01"/> </appSettings> ... </configuration> XML 上記のXMLファイルを使用して、ConfigurationManagerを使ってライセンスキーの値を取得し、それをIronBarCode.License.LicenseKeyプロパティに渡すことができます。 using System.Configuration; // Retrieve the license key from appSettings in the Web.config file string licenseKey = ConfigurationManager.AppSettings["IronBarCode.LicenseKey"]; // Apply the retrieved license key to the IronBarCode LicenseKey property IronBarCode.License.LicenseKey = licenseKey; using System.Configuration; // Retrieve the license key from appSettings in the Web.config file string licenseKey = ConfigurationManager.AppSettings["IronBarCode.LicenseKey"]; // Apply the retrieved license key to the IronBarCode LicenseKey property IronBarCode.License.LicenseKey = licenseKey; Imports System.Configuration ' Retrieve the license key from appSettings in the Web.config file Private licenseKey As String = ConfigurationManager.AppSettings("IronBarCode.LicenseKey") ' Apply the retrieved license key to the IronBarCode LicenseKey property IronBarCode.License.LicenseKey = licenseKey $vbLabelText $csharpLabel カーティス・チャウ 今すぐエンジニアリングチームとチャット テクニカルライター Curtis Chauは、カールトン大学でコンピュータサイエンスの学士号を取得し、Node.js、TypeScript、JavaScript、およびReactに精通したフロントエンド開発を専門としています。直感的で美しいユーザーインターフェースを作成することに情熱を持ち、Curtisは現代のフレームワークを用いた開発や、構造の良い視覚的に魅力的なマニュアルの作成を楽しんでいます。開発以外にも、CurtisはIoT(Internet of Things)への強い関心を持ち、ハードウェアとソフトウェアの統合方法を模索しています。余暇には、ゲームをしたりDiscordボットを作成したりして、技術に対する愛情と創造性を組み合わせています。 準備はできましたか? Nuget ダウンロード 2,070,733 | バージョン: 2026.2 リリース NuGet 無料版 総ダウンロード数: 2,070,733 ライセンスを見る