The PID to attach to. (read/write) ``pid_attach`` is only useful for connecting to a running process using PID. :getter: returns the remote port :setter: sets the remote port
(self)
| 1083 | |
| 1084 | @property |
| 1085 | def pid_attach(self) -> int: |
| 1086 | """ |
| 1087 | The PID to attach to. (read/write) |
| 1088 | |
| 1089 | ``pid_attach`` is only useful for connecting to a running process using PID. |
| 1090 | |
| 1091 | :getter: returns the remote port |
| 1092 | :setter: sets the remote port |
| 1093 | """ |
| 1094 | return dbgcore.BNDebuggerGetPIDAttach(self.handle) |
| 1095 | |
| 1096 | @remote_port.setter |
| 1097 | def pid_attach(self, pid: int) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected