5 Şubat 2018 Pazartesi

FormUrlEncodedContent Sınıfı

Giriş
Sadece Post isteği için kullanılır.  URL içine key1=value1&key2=value2 şeklinde encoding uygulanır.

Constructor
Örnek
Şöyle yaparız.
var content = new FormUrlEncodedContent(new[]
{
  new KeyValuePair<string, string>("Identification[api_key]", "somekey"),
  ...
  new KeyValuePair<string, string>("action", "credit_application_link"),
  new KeyValuePair<string, string>("Goods[Description]", "test"),
  new KeyValuePair<string, string>("Goods[Price]", "100000"),
  new KeyValuePair<string, string>("Finance[Code]", "PQERTS"),
  new KeyValuePair<string, string>("Finance[Deposit]", "92000")
});
Örnek
Şöyle yaparız.
var values = new Dictionary<string, string>
{
  { "data", str }
};

var content = new FormUrlEncodedContent(values);

Hiç yorum yok:

Yorum Gönder