GetBuildNumber

Description

Returns the product build number. This number is used to uniquely identify each build.

Syntaxe

Perl

$prodinfo->GetBuildNumber(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the product build number (for example, 00430).

Exemple

Perl

use CQPerlExt;



my $cqobject = CQSession::Build();

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

print "BuildNumber = '".$prodinfo->GetBuildNumber()."'\n";

CQSession::Unbuild($cqobject); 

Feedback