GetFullProductVersion

Description

Returns the full product version. This method is equivalent to the GetProductVersion and GetPatchVersion return values separated by a space.

Syntaxe

Perl

$prodinfo->GetFullProductVersion(); 
Identificateur
Description
prodinfo
A CQProductInfo object.
Valeur renvoyée
A String containing the full product version.

Exemple

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

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

print "FullProductVersion  = '".$prodinfo->GetFullProductVersion()."'\n";

CQClearQuest::Unbuild($cqobject); 

Commentaires en retour