/// <exception cref="TjsException"></exception> /// <exception cref="VariantException"></exception> public virtual int GetCount(IntWrapper result, string memberName, Dispatch2 objThis ) { if (mObject == null) { throw new TjsException(Error.NullAccess); } return(mObject.GetCount(result, memberName, mObjThis != null ? mObjThis : (objThis != null ? objThis : mObject))); }
/// <exception cref="VariantException"></exception> /// <exception cref="TjsException"></exception> public virtual int GetCount(IntWrapper result, string membername, Dispatch2 objthis ) { Dispatch2 OBJ1 = ((objthis != null) ? (objthis) : (mDispatch1)); int hr = mDispatch1.GetCount(result, membername, OBJ1); if (hr == Error.E_MEMBERNOTFOUND && mDispatch1 != mDispatch2) { Dispatch2 OBJ2 = ((objthis != null) ? (objthis) : (mDispatch2)); return(mDispatch2.GetCount(result, membername, OBJ2)); } return(hr); }