toXML() public method

public toXML ( ) : string
return string
Beispiel #1
0
 private void writeOutIssue(IssueDetail issue)
 {
     string[] arguments = new string[1], inputs = new string[1], outputs;
     arguments[0] = "import_xml -";
     inputs[0] = "<be-xml>\n";
     inputs[0] += issue.toXML();
     inputs[0] += "</be-xml>";
     //MessageBox.Show(this, "Would call: " + arguments[0] + "\nwith: " + inputs[0]);
     outputs = plugin.callBEcmd(BERepoLocation.Text, arguments, inputs);
     if (outputs[0].Length > 0) MessageBox.Show(this, "Command output: " + outputs[0]);
     changesMade();
 }