13 Şubat 2018 Salı

StringContent Sınıfı

Giriş
Bu sınıf HttpStringContent ile kardeştir.

Kullanım
Şöyle yaparız.
var response = new HttpResponseMessage();
response.Content = new StringContent(...);
response.Content.Headers.Add("Content-Disposition", "attachment; filename=yourname.csv");
return response;
Constructor
Şöyle yaparız.
string csv = "content here";
StringContent content = new StringContent(csv, Encoding.UTF8, "text/csv");
Headers Alanı
Şöyle yaparız.
content.Headers.ContentType = ...;

Hiç yorum yok:

Yorum Gönder