Click or drag to resize
License Constructor
Creates a new License object with the cryptographic keys already set in an AuthorEncryptionKey object

Namespace: com.softwarekey.Client.Licensing
Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax
public License(
	AuthorEncryptionKey encryptionKey,
	bool useEncryptedFile,
	bool useWebServiceEncryption,
	int productId,
	string productVersion,
	List<SystemIdentifierAlgorithm> identifierAlgorithms
)

Parameters

encryptionKey
Type: com.softwarekey.Client.UtilsAuthorEncryptionKey
The AuthorEncryptionKey object required for cryptographic routines.
useEncryptedFile
Type: SystemBoolean
Whether or not the license file should be encrypted. Encryption is strongly recommended.
useWebServiceEncryption
Type: SystemBoolean
Whether or not web service requests should be encrypted. Encryption is strongly recommended.
productId
Type: SystemInt32
The Product ID (usually defined by SOLO Server) of the protected product/application.
productVersion
Type: SystemString
The current version of the product/application. IOHelper.GetAssemblyFileVersion can be used to retrieve the version number of your assembly.
identifierAlgorithms
Type: System.Collections.GenericListSystemIdentifierAlgorithm
Generic List of SystemIdentifierAlgorithm objects
See Also