public ActionResult GetXapVersions(string fileNames) { var j = JArray.Parse(fileNames); var res = JsonConvert.DeserializeObject <string[]>(j.ToString()); return(this.Json(DeploymentServiceHelper.GetXapFileVersion(res))); }
public ActionResult GetXapVersion(string fileName) { return(this.Content(DeploymentServiceHelper.GetXapFileVersion(fileName))); }