The refresh() method refreshes an existing session created by login(), extending the timeout
window of the existing session by the amount specified in the session_duration_minutes
argument to the login() call that created the session.
window of the existing session by the amount specified in the session_duration_minutes
argument to the login() call that created the session.
Output
[xsd:boolean]
Examples
Perl
$vr->refresh( { session_id =>$sid } );
PHP
$vr->refresh( array( 'session_id' => $sid, ) );
Ruby
vr.refresh({ 'session_id' => sid, })
C#.NET
refreshArgs objRefresh = new refreshArgs(); objRefresh.session_id = _sSessionId; objVR.refresh(objRefresh);