Returns the version of the FLEXlm feature that is used to get a license.
Perl
$prodinfo->GetLicenseVersion();
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "LicenseVersion = '".$prodinfo->GetLicenseVersion()."'\n";
CQSession::Unbuild($cqobject);