コード例 #1
0
        public ActionResult Update(SkillSetsModel skillSets)
        {
            try
            {
                List <SkillSetsModel> skillSetsInfo = new List <SkillSetsModel>();
                using (var client = new HttpClient())
                {
                    client.BaseAddress = new Uri(Baseurl);
                    //HTTP GET
                    var responseTask = client.PutAsJsonAsync("api/skillsets/update", skillSets);
                    responseTask.Wait();

                    var result = responseTask.Result;
                    if (result.IsSuccessStatusCode)
                    {
                        //Storing the response details recieved from web api
                        var skillSetsResponse = result.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the SkillSet list
                        skillSetsInfo = JsonConvert.DeserializeObject <List <SkillSetsModel> >(skillSetsResponse);
                    }
                }

                return(RedirectToAction("Index"));
            }
            catch (Exception ex)
            {
                ExceptionLogHandler.LogData(ex);
                throw ex;
            }
        }
コード例 #2
0
        public async Task <ActionResult> Insert(SkillSetsModel skillsets)
        {
            try
            {
                SkillSetsModel SORTypeInfo = new SkillSetsModel();
                using (var client = new HttpClient())
                {
                    //Passing service base url
                    client.BaseAddress = new Uri(Baseurl);

                    client.DefaultRequestHeaders.Clear();

                    var stype = JsonConvert.SerializeObject(skillsets);

                    // Define request data format
                    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                    //Sending request to find web api REST service resource GetAllComapnies using HttpClient
                    HttpResponseMessage Res = await client.PostAsync("api/skillsets/insert", new StringContent(stype, Encoding.UTF8, "application/json"));

                    //Checking the response is successful or not which is sent using HttpClient
                    if (Res.IsSuccessStatusCode)
                    {
                        //Storing the response details recieved from web api
                        var SORTypeResponse = Res.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the Company list
                        SORTypeInfo = JsonConvert.DeserializeObject <SkillSetsModel>(SORTypeResponse);
                    }

                    //returning the company list to view
                    return(RedirectToAction("Index"));
                }
            }
            catch (Exception ex)
            {
                ExceptionLogHandler.LogData(ex);
                throw ex;
            }
        }