License key attribute. Use this attribute to include a license key with your assembly or application.

Namespace: TallComponents.Licensing
Assembly: TallComponents.PDF.PDFA (in TallComponents.PDF.PDFA.dll) Version: 1.0.1.0

Syntax

C#
public class PDFALicenseAttribute : LicenseAttribute
Visual Basic
Public Class PDFALicenseAttribute _
	Inherits LicenseAttribute

Examples

Include the following code in your AssemblyInfo:

C#

CopyC#
using TallComponents.Licensing;

[assembly: PDFALicense( "Your Key like: PDFA.NET x.y Key", "Your Value like:  Xyz++" )]

VB.NET

CopyC#
Imports TallComponents.Licensing

<Assembly: PDFALicense("Your Key like: PDFA.NET x.y Key", "Your Value like:  Xyz++" )>
The license key name depends on the type of license you have purchased. The value is generated when you activate your license.

You can obtain the license key name and value by logging in to your account on our website.

Inheritance Hierarchy

System..::..Object
  System..::..Attribute
    TallComponents.Licensing..::..LicenseAttribute
      TallComponents.Licensing..::..PDFALicenseAttribute

See Also