Description
Returns
the version of the FLEXlm feature that is used to get a web license.
Syntaxe
Perl
$prodinfo->GetWebLicenseVersion();
- Identificateur
- Description
- prodinfo
- A CQProductInfo object.
- Valeur renvoyée
- A String containing the web license version (for example,
1.1).
Exemple
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build();
my $prodinfo = $cqobject->CreateProductInfo();
print "WebLicenseVersion = '".$prodinfo->GetWebLicenseVersion()."'\n";
CQClearQuest::Unbuild($cqobject);