Description
Returns
the FLEXlm feature name used to get a license.
Syntaxe
Perl
$prodinfo->GetLicenseFeature();
- Identificateur
- Description
- prodinfo
- A CQProductInfo object.
- Valeur renvoyée
- A String containing the license feature (for example,
ClearQuest).
Exemple
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "LicenseFeature = '".$prodinfo->GetLicenseFeature()."'\n";
CQSession::Unbuild($cqobject);