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

Method file

python/collaboration/snapshot.py:427–436  ·  view source on GitHub ↗

Owning File :return: File object

(self)

Source from the content-addressed store, hash-verified

425
426 @property
427 def file(self) -> 'file.RemoteFile':
428 """
429 Owning File
430
431 :return: File object
432 """
433 value = core.BNCollaborationUndoEntryGetFile(self._handle)
434 if value is None:
435 raise RuntimeError(util._last_error())
436 return file.RemoteFile(handle=value)
437
438 @property
439 def project(self) -> 'project.RemoteProject':

Callers

nothing calls this directly

Calls 1

RemoteFileMethod · 0.80

Tested by

no test coverage detected