コード例 #1
0
ファイル: DeploymentController.cs プロジェクト: mehabadi/HPMS
        public ActionResult GetXapVersions(string fileNames)
        {
            var j   = JArray.Parse(fileNames);
            var res = JsonConvert.DeserializeObject <string[]>(j.ToString());

            return(this.Json(DeploymentServiceHelper.GetXapFileVersion(res)));
        }
コード例 #2
0
ファイル: DeploymentController.cs プロジェクト: mehabadi/HPMS
 public ActionResult GetXapVersion(string fileName)
 {
     return(this.Content(DeploymentServiceHelper.GetXapFileVersion(fileName)));
 }