toXML() 공개 메소드

public toXML ( ) : string
리턴 string
예제 #1
0
파일: IssuesForm.cs 프로젝트: ned14/BEurtle
 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();
 }