Skip to end of banner
Go to start of banner

getAllAttachments (redirect)

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Looking for a getAllAttachments() routine? You won’t find it because there isn’t any. Instead, all the attachments for an issue can be retrieved using the ‘attachments’ standard variable. Examples on how to use this variable can be found below.

Example 1

return attachments;

Example 2

string [] allAttachments = attachments;

for(string a in allAttachments) {
    runnerLog(a);
}
  • No labels