Unbuild

Description

Deletes the Session object you explicitly created with the Build method, when you do not need it anymore.

Note: This method is for Perl only.

Syntax

Perl


CQSession::Unbuild($SessionObj); 
Identifier
Description
CQSession
A static function specifier for the Session object.
SessionObj
The Session object that you are deleting.
Return value
None.

Example

Perl


use CQPerlExt;



my $sessionObj = CQSession::Build();



CQSession::Unbuild($sessionObj);