PDFRasterizer.NET 4.0 is now available. Supports .NET Core. Renders pixel-perfectly.

Use multiple licenses

This code sample explains how to register multiple license keys with a single application.

Here is the web.config that includes a single license key for a PDFKit.NET 4.0 Server license:

<configuration>
  <appSettings>
    <add key="PDFKit.NET 4.0 Server Key" value="7206:JUm8jYm-4bwE84gi8RtQuk++" />
  </appSettings>
</configuration>

Now suppose that this web.config file is part of a project that is used to deploy to two different servers. In that case, it is possible to add a second key to the same web.config. Because a config file behaves like a dictionary, you must make the key attribute unique by adding a postfix. Our licensing code only checks if the key attribute starts with the expected string so the postfix may be anything. It will check all licenses until verification succeeds.

Here is the web.config file with the second key added:

<configuration>
  <appSettings>
    <add key="PDFKit.NET 4.0 Server Key SVR001" value="7206:JUm8jYm-4bwE84gi8RtQuk++" />
    <add key="PDFKit.NET 4.0 Server Key SVR002" value="3070:5RwUiW1lHWFEcteNiQFTy+++" />
  </appSettings>
</configuration>

Note the postfix of the key attribute. Although it can be anything, it is recommended to use something that makes sense.

Download PDFKit.NET 5.0
We will send you a download link

  • This field is for validation purposes and should be left unchanged.
Why do we ask your email address?
We send tips that speed up your evaluation
We let you know about bug fixes
You can always unsubscribe with one click
We never share your address with a 3rd party
Thank you for your download

We have sent an email with a download link.