Using IronPrint License Keys

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

How to Get a License Key

Adding an IronPrint license key allows you to deploy your project live without restrictions or watermarks.

You can buy a license key or sign up for a free 30-day trial key here.


Step 1: Download the Latest Version of IronPrint

Step 2: Apply Your License Key

Set your license using code

Add this code to the startup of your application, before IronPrint is used. Make sure to replace YOUR_LICENSE_KEY with your actual IronPrint license key.

using IronPrint;

class Program
{
    static void Main()
    {
        // Apply the IronPrint license key at the start of your application
        IronPrint.LicenseKey = "YOUR_LICENSE_KEY";

        // Verify that the license key is applied
        if (IronPrint.License.IsLicensed)
        {
            Console.WriteLine("License is applied successfully.");
        }
        else
        {
            Console.WriteLine("Failed to apply the license.");
        }

        // Start using IronPrint features
        // Your code logic goes here
    }
}
using IronPrint;

class Program
{
    static void Main()
    {
        // Apply the IronPrint license key at the start of your application
        IronPrint.LicenseKey = "YOUR_LICENSE_KEY";

        // Verify that the license key is applied
        if (IronPrint.License.IsLicensed)
        {
            Console.WriteLine("License is applied successfully.");
        }
        else
        {
            Console.WriteLine("Failed to apply the license.");
        }

        // Start using IronPrint features
        // Your code logic goes here
    }
}
Imports IronPrint

Friend Class Program
	Shared Sub Main()
		' Apply the IronPrint license key at the start of your application
		IronPrint.LicenseKey = "YOUR_LICENSE_KEY"

		' Verify that the license key is applied
		If IronPrint.License.IsLicensed Then
			Console.WriteLine("License is applied successfully.")
		Else
			Console.WriteLine("Failed to apply the license.")
		End If

		' Start using IronPrint features
		' Your code logic goes here
	End Sub
End Class
$vbLabelText   $csharpLabel

Set your license using Web.Config or App.Config

To apply a key globally to your application using Web.Config or App.Config, add the following key to your config file in appSettings.

<configuration>
  ...
  <appSettings>
    <add key="IronPrint.LicenseKey" value="IRONPRINT.MYLICENSE.KEY.1EF01"/>
  </appSettings>
  ...
</configuration>
<configuration>
  ...
  <appSettings>
    <add key="IronPrint.LicenseKey" value="IRONPRINT.MYLICENSE.KEY.1EF01"/>
  </appSettings>
  ...
</configuration>
XML

There is a known licensing issue with the IronPrint version released before 2024.3.6 on projects:

  • ASP.NET projects
  • .NET Framework version >= 4.6.2

The key stored in a Web.config file is NOT being picked up and used by the product. Visit the 'Setting License Key in Web.config' troubleshooting article to learn more.

Ensure that IronPrint.License.IsLicensed returns true to verify that your application is licensed correctly.


Set your license key using a .NET Core appsettings.json file

To apply a key globally to your .NET Core application:

  • Add a JSON file to your project called appsettings.json in the root directory of your project.
  • Add a 'IronPrint.LicenseKey' key to your JSON config file. The value should be your license key.
  • Ensure that the file properties include Copy to Output Directory: Copy always.

File: appsettings.json

{
    "IronPrint.LicenseKey": "IRONPRINT.MYLICENSE.KEY.1EF01"
}

Step 3: Validate Your License Key

Verify the Installed License Key

To verify whether the license key has been applied correctly, you can check the IsLicensed property. Use the following code snippet:

using IronPrint;

class LicenseCheck
{
    static void Main()
    {
        // Check if the license is applied
        bool isLicensed = IronPrint.License.IsLicensed;
        Console.WriteLine(isLicensed ? "License applied." : "License not applied.");
    }
}
using IronPrint;

class LicenseCheck
{
    static void Main()
    {
        // Check if the license is applied
        bool isLicensed = IronPrint.License.IsLicensed;
        Console.WriteLine(isLicensed ? "License applied." : "License not applied.");
    }
}
Imports IronPrint

Friend Class LicenseCheck
	Shared Sub Main()
		' Check if the license is applied
		Dim isLicensed As Boolean = IronPrint.License.IsLicensed
		Console.WriteLine(If(isLicensed, "License applied.", "License not applied."))
	End Sub
End Class
$vbLabelText   $csharpLabel

Validate the License Key

To ensure the validity of your license or trial key, you can use the following code snippet:

using IronPrint;

class ValidateLicense
{
    static void Main()
    {
        // Validate license or trial key
        bool isValid = IronPrint.License.IsValid;
        Console.WriteLine(isValid ? "License key is valid." : "License key is invalid.");
    }
}
using IronPrint;

class ValidateLicense
{
    static void Main()
    {
        // Validate license or trial key
        bool isValid = IronPrint.License.IsValid;
        Console.WriteLine(isValid ? "License key is valid." : "License key is invalid.");
    }
}
Imports IronPrint

Friend Class ValidateLicense
	Shared Sub Main()
		' Validate license or trial key
		Dim isValid As Boolean = IronPrint.License.IsValid
		Console.WriteLine(If(isValid, "License key is valid.", "License key is invalid."))
	End Sub
End Class
$vbLabelText   $csharpLabel

If the return value is True, it means the key is valid, and you can proceed with using IronPrint. However, if the return value is False, it indicates that the key is invalid.


Step 4: Getting Started with Your Project

To get started with IronPrint, we highly recommend following our comprehensive tutorial on how to Get Started with IronPrint. This tutorial offers detailed instructions and examples to help you grasp the basics of using IronPrint.


Questions or Need Support?

To use IronPrint in live projects, you'll require a paid or trial license key, which you can obtain by purchasing a license. The trial license is available by visiting this link.

For a comprehensive collection of code examples, tutorials, licensing details, and extensive documentation, please visit the IronPrint section on our website.

If you have any questions, feel free to reach out to support@ironsoftware.com.

Preguntas Frecuentes

¿Cómo puedo obtener una clave de licencia para mi aplicación de impresión en C#?

Puedes comprar una clave de licencia desde la página de licencias de IronPrint o inscribirte para obtener una clave de prueba gratuita de 30 días para desplegar tu proyecto en vivo sin restricciones.

¿Cuáles son los pasos para aplicar una clave de licencia en C#?

Para aplicar una clave de licencia en C#, utiliza el código IronPrint.LicenseKey = "YOUR_LICENSE_KEY"; al inicio de tu aplicación. Sustituye "YOUR_LICENSE_KEY" con tu clave de licencia real.

¿Cómo configuro una clave de licencia en Web.Config o App.Config?

Agrega tu clave de licencia a la sección appSettings de tu archivo de configuración usando: <add key="IronPrint.LicenseKey" value="YOUR_LICENSE_KEY"/>.

¿Qué debo hacer si mi clave de licencia no se aplica en Web.config?

Asegúrate de estar usando una versión lanzada después de 2024.3.6. Si los problemas persisten, consulta el artículo de solución de problemas 'Setting License Key in Web.config' en el sitio web de IronPrint.

¿Cómo puedo aplicar una clave de licencia en una aplicación .NET Core?

En una aplicación .NET Core, agrega un archivo appsettings.json con un par clave-valor: { "IronPrint.LicenseKey": "YOUR_LICENSE_KEY" } y configura sus propiedades como 'Copiar en el Directorio de Salida: Copiar siempre'.

¿Cómo puedo verificar si mi clave de licencia de IronPrint está aplicada correctamente?

Utiliza el fragmento de código bool isLicensed = IronPrint.License.IsLicensed; para verificar si tu clave de licencia está aplicada correctamente. Un valor de retorno de true indica una aplicación exitosa.

¿Cómo valido la validez de mi clave de licencia de IronPrint?

Para validar tu clave de licencia, usa bool isValid = IronPrint.License.IsValid;. Si devuelve true, tu clave es válida.

¿Dónde puedo encontrar recursos para comenzar con IronPrint?

Visita el sitio web de IronPrint para obtener tutoriales completos, ejemplos de código y una extensa documentación que te ayudará a empezar a usar IronPrint en tus proyectos.

¿Qué debo hacer si necesito soporte con IronPrint?

Para soporte, puedes enviar un correo electrónico a o explorar la sección de IronPrint en el sitio web de Iron Software para obtener recursos adicionales y documentación.

¿IronPrint es compatible con .NET 10 y cómo funciona el licenciamiento en ese entorno?

Sí. IronPrint es compatible con .NET 10, .NET 9, 8, 7, 6 y .NET Core 3.1+, así como con .NET Framework 4.6.2+. El licenciamiento funciona de la misma manera en .NET 10: configure su clave de licencia mediante código ( IronPrint.LicenseKey = "YOUR_LICENSE_KEY"; ) o use la configuración (appsettings.json) para aplicarla globalmente. La propiedad IsLicensed se puede usar para verificar la correcta aplicación. Las características y la compatibilidad con .NET 10 se documentan en la sección Características. ([ironsoftware.com](https://ironsoftware.com/csharp/print/features/?utm_source=openai))

Curtis Chau
Escritor Técnico

Curtis Chau tiene una licenciatura en Ciencias de la Computación (Carleton University) y se especializa en el desarrollo front-end con experiencia en Node.js, TypeScript, JavaScript y React. Apasionado por crear interfaces de usuario intuitivas y estéticamente agradables, disfruta trabajando con frameworks modernos y creando manuales bien ...

Leer más
¿Listo para empezar?
Nuget Descargas 34,016 | Versión: 2025.11 recién lanzado