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

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

delete an execution. Current status this API is not fully functioning as it is not clear how to configure testlink to allow this to happen
public DeleteExecution ( int executionid ) : GeneralResult
executionid int the id of the test case execution
Результат GeneralResult
        public GeneralResult DeleteExecution(int executionid)
        {
            stateIsValid();
            object o = proxy.deleteExecution(devkey, executionid);
            handleErrorMessage(o);
            object[] list = o as object[];
            return new GeneralResult(list[0] as XmlRpcStruct);

        }
        #endregion