(self)
| 637 | return list(self.serviceproperties) |
| 638 | |
| 639 | def basicmethods(self): |
| 640 | if self.serviceimplementation == 'basic': |
| 641 | return self.ExecMethod(self.vbMethod + self.flgArrayRet, 'Methods') |
| 642 | else: |
| 643 | return [] |
| 644 | |
| 645 | def basicproperties(self): |
| 646 | if self.serviceimplementation == 'basic': |
nothing calls this directly
no test coverage detected