QueryInterface is forwarded to the real com object.
(
self, interface: type[_T_IUnknown], iid: Optional[GUID] = None
)
| 90 | return item |
| 91 | |
| 92 | def QueryInterface( |
| 93 | self, interface: type[_T_IUnknown], iid: Optional[GUID] = None |
| 94 | ) -> _T_IUnknown: |
| 95 | """QueryInterface is forwarded to the real com object.""" |
| 96 | return self._comobj.QueryInterface(interface, iid) |
| 97 | |
| 98 | def _FlagAsMethod(self, *names: str) -> None: |
| 99 | """Flag these attribute names as being methods. |
no outgoing calls