コード例 #1
0
        public JsonResult AddEnrollment(string username, string equipment, string hostID)
        {
            //get the result using ignition web service
            var result = HttpHandler.AddUserEquipment(username, equipment, hostID);

            //return the json data
            return(Json(result, JsonRequestBehavior.AllowGet));
        }