This class holds download information (return value of the debugger.Download.Information function).
[Type]
class DownloadInfo:
Number = None
Name = None
ObjectDownload = True
SymbolDownload = False
|
[Variable]
|
|
Number
|
This holds the download number.
|
Name
|
This holds the file name.
|
ObjectDownload
|
This holds whether object information has been downloaded or not.
True: Object information has been downloaded.
False: Object information has not been downloaded.
|
SymbolDownload
|
This holds whether symbol information has been downloaded or not.
True: Symbol information has been downloaded.
False: Symbol information has not been downloaded.
|
[Detailed description]
[Example of use]
>>>info = debugger.Download.Information()
1: DefaultBuild\sample.out
>>>print info[0].Number
1
>>>print info[0].Name
DefaultBuild\sample.out
>>>print info[0].ObjectDownload
True
>>>print info[0].SymbolDownload
True
>>>
|