Link Search Menu Expand Document

Display License Info - C#

PDF Extractor SDK sample in C# demonstrating ‘Display License Info’

Program.cs
using System;
using Bytescout.PDFExtractor;

namespace DisplayLicenseInfo
{
    class Program
    {
        static void Main(string[] args)
        {
            // LicenseInfo can be retrieved by createing instance of any extractor class,
            // Because all of them are derived from BaseExtractor
            TextExtractor extractor = new TextExtractor();
            extractor.RegistrationName = "demo";
            extractor.RegistrationKey = "demo";

            // Get License Info
            var licenseInfo = extractor.LicenseInfo;

            // Show Info
            Console.WriteLine("===============================");
            Console.WriteLine("======== License Info =========");
            Console.WriteLine("===============================\n");

            Console.WriteLine($"License type: {licenseInfo.LicenseType}");
            Console.WriteLine($"License limit type: {licenseInfo.LimitType}");
            Console.WriteLine($"Limit of license units: {licenseInfo.Limit}");
            Console.WriteLine($"License limit term: {licenseInfo.LimitTerm}");
            Console.WriteLine($"No of remaining license units: {licenseInfo.Remainder}");
            Console.WriteLine($"Update expires On: {licenseInfo.UpdatesExpireOn}");

            Console.ReadLine();
        }
    }
}

Download Source Code (.zip)

Return to the previous page Explore PDF Extractor SDK