Releases the resources of a business object.
Syntax
void IreleaseBusinessObject(IBusinessObject releaseObject);
Parameters
Return Values
None.
Notes
When the access client is finished using a business object, it should the IreleaseBusinessObject() method to free the IBusinessObject object in InterChange Server memory.
Example
// Create the business object IBusinessObj anObject = null; accessSession.IcreateBusinessObjectWithVerb("AcctsRecCurrent", "Retrieve"); // Release the object accessSession.IreleaseBusinessObject(anObject);