Created
February 25, 2017 09:15
Revisions
-
microvb created this gist
Feb 25, 2017 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using System.Collections.Specialized; class DataService { public NameValueCollection Query { get; set; } public string Endpoint { get; set; } public FormUrlEncodedContent QueryEncoded { get { try { return new FormUrlEncodedContent( Query.AllKeys .Select( s => new { Key = s, Value = Query[s] } ) .ToDictionary( p => p.Key, p => p.Value ) ); } catch { return null; } } } public DataService() { Query = new NameValueCollection(); } public void ClearQuery() { Query.Clear(); } public async Task<string> Post() { ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; string result = ""; using( HttpClient client = new HttpClient() ) { HttpResponseMessage reply = await client.PostAsync( Endpoint, QueryEncoded ); result = await reply.Content.ReadAsStringAsync(); } return result; } }