Attualmente sto sviluppando un'applicazione wp8.1 C #, sono riuscito a eseguire un metodo POST in json sulla mia api creando un oggetto json (bm) da textbox.texts. ecco il mio codice qui sotto. Come prendo lo stesso textbox.text e inseriscili come tipo di contenuto = application / x-www-form-urlencoded. qual è il codice per quello?
Profile bm = new Profile();
bm.first_name = Names.Text;
bm.surname = surname.Text;
string json = JsonConvert.SerializeObject(bm);
MessageDialog messageDialog = new MessageDialog(json);//Text should not be empty
await messageDialog.ShowAsync();
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "application/json");
byte[] messageBytes = Encoding.UTF8.GetBytes(json);
var content = new ByteArrayContent(messageBytes);
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
var response = client.PostAsync("myapiurl", content).Result;
FormUrlEncodedContent
, poiché Dictionary è unIEnumerable
diKeyValuePair
s.