GetWebLicenseVersion

Description

Returns the version of the FLEXlm feature that is used to get a web license.

Syntax

Perl


$prodinfo->GetWebLicenseVersion(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the web license version (for example, 1.1).

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

my $prodinfo = $cqobject->GetProductInfo();

print "WebLicenseVersion = '".$prodinfo->GetWebLicenseVersion()."'\n";

CQSession::Unbuild($cqobject);