Meyn.TestLink.TestPlan.TestPlan C# (CSharp) Method

TestPlan() private method

constructor used by XMLRPC interface on decoding the function return
private TestPlan ( CookComputing.XmlRpc.XmlRpcStruct data ) : System
data CookComputing.XmlRpc.XmlRpcStruct data returned by Testlink
return System
        internal TestPlan(XmlRpcStruct data)
        {
             active = toInt(data, "active") == 1;
            id = toInt(data, "id");
            name = (string)data["name"];
            notes = (string)data["notes"];
            testproject_id = toInt(data, "testproject_id");
            open = toInt(data, "is_open") == 1;
            is_public = toInt(data, "is_public") == 1;
        }
    }
TestPlan