ComponentFactory.Krypton.Ribbon.EncryptedLicense.EncryptedLicense C# (CSharp) Méthode

EncryptedLicense() public méthode

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
Résultat System
        public EncryptedLicense(string key, UInt16 serialNo, string productInfo)
        {
            _key = key;
            _serialNo = serialNo;
            _productInfo = productInfo;
        }