Everything

debugger.Download.Property


This property sets or refers to conditions of the download file of the debug tool.

[Specification format]

debugger.Download.Property = downloadlist

[Setting(s)]

Setting

Description

downloadlist

Set conditions of the download file of the debug tool as a list.

See the DownloadCondition class for details.

[Reference]

List of conditions of the download file

[Detailed description]

-

This property sets or refers to conditions of the download file of the debug tool.

Caution

The list specified with downloadlist should be a C# list and not an IronPython list.
Therefore, first refer to the list of conditions and manipulate that list.

Example

di = debugger.Download.Property

You can manipulate conditions in the list set for di.

For the usage, refer to [Example of use].

[Example of use]

>>>di = debugger.Download.Property
>>>print di[0].FileName
C:\project\test.abs
>>>print di[0].DownloadFileType
LoadModule
>>>dc = DownloadCondition()
>>>dc.FileName = "C:/project/test2.abs"
>>>dc.DownloadFileType = DownloadFileType.LoadModule
>>>di.Add(dc)
>>>debugger.Download.Property = di
>>>