Internal function to get an ObjectInstance from an oid
(self, oid: int)
| 886 | raise NotImplementedError("Cannot use sr1_req on DCOM_Client !") |
| 887 | |
| 888 | def _GetObjectInstance(self, oid: int): |
| 889 | """ |
| 890 | Internal function to get an ObjectInstance from an oid |
| 891 | """ |
| 892 | return ObjectInstance( |
| 893 | client=self, |
| 894 | oid=oid, |
| 895 | ) |
| 896 | |
| 897 | def _RemoteCreateInstanceOrGetClassObject( |
| 898 | self, |
no test coverage detected