COleDispatchDriver::m_bAutoRelease
如果为,m_lpDispatch 访问的COM对象会自动释放 TRUE,当 ReleaseDispatch 调用或,当销毁此 COleDispatchDriver 对象。
BOOL m_bAutoRelease;
备注
默认情况下,m_bAutoRelease 设置为在构造函数中 TRUE。
有关释放COM对象的更多信息,请参见 实现引用计数 和 IUnknown::Release 在 Windows SDK。
示例
// Clean up by forcing Release to be called
// on COleDispatchDriver object and delete
if (bError)
{
pDisp->m_bAutoRelease = TRUE;
delete pDisp;
pDisp = NULL;
}
要求
Header: afxdisp.h
请参见
参考
COleDispatchDriver::AttachDispatch