アプリケーションのjsonサービスにレコードを追加したいとします。どうすればService Urlでこれを行うことができますか?ここに私のコードです。XamarinフォームJsonサービスの挿入データ
CustomerModel customer = new CustomerModel();
customer.Name = entryCompanyName.Text;
customer.Title = entryCompanyTitle.Text;
customer.PhoneNumber = entryTelephone.Text;
customer.FaxNumber = entryFax.Text;
customer.Email = entryEmail.Text;
customer.CityId = 6444;
string json = JsonConvert.SerializeObject(customer);
string sContentType = "application/json";
string path = "service url";
HttpClient Client = new HttpClient();
var task = Client.PostAsync(path, new StringContent(json.ToString(), Encoding.UTF8, sContentType));
私はM.Wiśnickiのソリューションをしようとしているが、私はこのエラーを取っ
私は:(私はミスを犯すん、私はSystem.netを追加したときにエラーを取得できませんでした?
を働いていましたか? –
これらのメソッドは見つかりません。 GetRequestStreamAsync GetResponseAsync – ozmert75