Esempio n. 1
0
 public RestClientWrapper(string serviceBase, string folder, WindowBase windowBase, bool isShow = true)
     : this()
 {
     client.BaseAddress = new Uri(client.BaseAddress, serviceBase);
     client.DefaultRequestHeaders.Add("Folder", folder);
     this.windowBase = windowBase;
     AsyncProgress.GetInstance().InjectWindowBase(windowBase, isShow);
 }
Esempio n. 2
0
        protected async Task <TOut> DeleteAsync <TOut>(string relativeUri)
        {
            AsyncProgress.GetInstance().ShowPopup();
            Uri uri = new Uri(string.Concat(client.BaseAddress.AbsoluteUri, "/", relativeUri));
            HttpResponseMessage response = await client.DeleteAsync(uri);

            AsyncProgress.GetInstance().HidePopup();
            response.EnsureSuccessStatusCode();
            return(await response.Content.ReadAsAsync <TOut>());
        }
Esempio n. 3
0
        protected async Task <T> GetAsync <T>(string relativeUri)
        {
            AsyncProgress.GetInstance().ShowPopup();
            Uri uri = new Uri(string.Concat(client.BaseAddress.AbsoluteUri, "/", relativeUri));
            HttpResponseMessage response = await client.GetAsync(uri, HttpCompletionOption.ResponseContentRead);

            AsyncProgress.GetInstance().HidePopup();
            if (response.IsSuccessStatusCode)
            {
                return(await response.Content.ReadAsAsync <T>());
            }
            else
            {
                return(default(T));
            }
        }
Esempio n. 4
0
        protected async Task <TOut> PutAsync <TIn, TOut>(string relativeUri, TIn param)
        {
            AsyncProgress.GetInstance().ShowPopup();
            Uri uri = new Uri(string.Concat(client.BaseAddress.AbsoluteUri, "/", relativeUri));
            var microsoftDateFormatSettings = new JsonSerializerSettings
            {
                DateFormatHandling = DateFormatHandling.MicrosoftDateFormat
            };

            string microsoftJson         = JsonConvert.SerializeObject(param, microsoftDateFormatSettings);
            HttpResponseMessage response = await client.PutAsync(uri, new StringContent(
                                                                     microsoftJson,
                                                                     Encoding.UTF8, "application/json"));

            AsyncProgress.GetInstance().HidePopup();
            response.EnsureSuccessStatusCode();

            return(await response.Content.ReadAsAsync <TOut>());
        }