HttpClient client = new HttpClient();
client.BaseAddress = uri;
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
HttpResponseMessage response = client.PostAsJsonAsync(route, requestResource).Result;
をSystem.NotImplementedExceptionを投げているXamarin PCLと協力して、このエラーが発生していません。PostAsJsonAsyncはXamarin PCLに
ex = {System.TypeInitializationException: The type initializer for 'System.Net.Http.FormattingUtilities' threw an exception. ---> System.NotImplementedException: The method or operation is not implemented.
at System.Runtime.Serialization.XsdDataContractExporte...
どのNugetパッケージを追加しましたか?私は 'andre.agostinho'によって' Microsoft.Net.Http'と 'System.Net.Http.Formatting.Extension'をインストールしましたが、' PostAsJsonAsync'のgeneric-typeバージョンは見ませんでした。 –
あなたは問題の答えを得ましたか?私は同じものを持っています – user3841581