Meyn.TestLink.TestLink.CreateBuild C# (CSharp) Метод

CreateBuild() публичный Метод

create a build for a testplan
public CreateBuild ( int testplanid, string buildname, string buildnotes ) : GeneralResult
testplanid int id of the test plan
buildname string name of the build
buildnotes string notes
Результат GeneralResult
        public GeneralResult CreateBuild(int testplanid, string buildname, string buildnotes)
        {
            stateIsValid();
            object[] o = proxy.createBuild(devkey, testplanid, buildname, buildnotes);
            handleErrorMessage(o);
            foreach (XmlRpcStruct data in o)
                return new GeneralResult(data);
            return null;
        }