ComponentFactory.Krypton.Ribbon.EncryptedLicense.EncryptedLicense C# (CSharp) Method

EncryptedLicense() public method

Create a new Infralution Encrypted License
public EncryptedLicense ( string key, UInt16 serialNo, string productInfo ) : System
key string The key for the license
serialNo System.UInt16 The serial number of the license
productInfo string The product data associated with the license
return System
        public EncryptedLicense(string key, UInt16 serialNo, string productInfo)
        {
            _key = key;
            _serialNo = serialNo;
            _productInfo = productInfo;
        }