GetLicenseFeature
Description
Returns the FLEXlm feature name used to get a license.
Syntax
Perl
$prodinfo->GetLicenseFeature();
- Identifier
- Description
- prodinfo
- A CQProductInfo object.
- Return value
- A String containing the license feature (for example, ClearQuest®).
Example
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "LicenseFeature = '".$prodinfo->GetLicenseFeature()."'\n";
CQSession::Unbuild($cqobject);