IPB_Session interface:
Release method
Description
Releases the current IPB_Session. The IPB_Session
object becomes invalid after the call.
Syntax
Release()
Return Values
None.
Examples
This example shows a call to Release.
The example checks whether there is a valid session object before
attempting to release it:
if (pIPB_ObjectFactory)
{
pIPB_ObjectFactory->Release();
pIPB_ObjectFactory = NULL;
}