CreateUserSession

Description

Créez un objet de session. After the object is created, you must login to the Session.

Syntaxe

Perl

$ClearQuestObj->CreateUserSession(); 
Identificateur
Description
ClearQuestObj
A CQClearQuest object.
Return value
Returns a Session object.

Exemple

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

my $SessionObj = $cqobject->CreateUserSession();

# login to the Session object

# do something with the Session object...

CQClearQuest::Unbuild($cqobject); 

Commentaires