MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / remote

Method remote

python/collaboration/snapshot.py:451–460  ·  view source on GitHub ↗

Owning Remote :return: Remote object

(self)

Source from the content-addressed store, hash-verified

449
450 @property
451 def remote(self) -> 'remote.Remote':
452 """
453 Owning Remote
454
455 :return: Remote object
456 """
457 value = core.BNCollaborationUndoEntryGetRemote(self._handle)
458 if value is None:
459 raise RuntimeError(util._last_error())
460 return remote.Remote(handle=value)
461
462 @property
463 def url(self) -> str:

Callers

nothing calls this directly

Calls 1

RemoteMethod · 0.80

Tested by

no test coverage detected