전체 제품 이름을 리턴합니다. 이 메소드는 공백으로 구분된 GetProductVersion 및 GetPatchVersion 리턴값과 동등합니다.
Perl
$prodinfo->GetFullProductVersion();
Perl
use CQPerlExt;
my $cqobject = CQSession::Build();
my $prodinfo = $cqobject->GetProductInfo();
print "FullProductVersion = '".$prodinfo->GetFullProductVersion()."'\n";
CQSession::Unbuild($cqobject);