(self, sd)
| 90 | return windows.security.SecurityDescriptor.from_handle(self.handle) |
| 91 | |
| 92 | def set_security_descriptor(self, sd): |
| 93 | if isinstance(sd, basestring): |
| 94 | sd = windows.security.SecurityDescriptor.from_string(sd) |
| 95 | sd._apply_to_handle_and_type(self.handle) |
| 96 | |
| 97 | security_descriptor = property(get_security_descriptor, set_security_descriptor) |
| 98 |
nothing calls this directly
no test coverage detected