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

Method view

python/workflow.py:56–63  ·  view source on GitHub ↗

BinaryView for the current AnalysisContext (writable)

(self)

Source from the content-addressed store, hash-verified

54
55 @property
56 def view(self) -> 'binaryview.BinaryView':
57 """
58 BinaryView for the current AnalysisContext (writable)
59 """
60 result = core.BNAnalysisContextGetBinaryView(self.handle)
61 if not result:
62 return None
63 return binaryview.BinaryView(handle=result)
64
65 @property
66 def function(self) -> '_function.Function':

Callers

nothing calls this directly

Calls 1

BinaryViewMethod · 0.80

Tested by

no test coverage detected