mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
23 lines
608 B
Python
23 lines
608 B
Python
|
|
class netnode(object):
|
|
def getblob(self, start, tag) -> Union[bytes, None]:
|
|
"""
|
|
Get a blob from a netnode.
|
|
|
|
@param start the index where the blob starts (it may span on multiple indexes)
|
|
@param tag the netnode tag
|
|
@return a blob, or None
|
|
"""
|
|
pass
|
|
|
|
def getclob(self, start, tag) -> Union[str, None]:
|
|
"""
|
|
Get a large amount of text from a netnode.
|
|
|
|
@param start the index where the clob starts (it may span on multiple indexes)
|
|
@param tag the netnode tag
|
|
@return a clob, or None
|
|
"""
|
|
pass
|
|
|