Giriş
Bu sınıf HttpStringContent ile kardeştir.
Kullanım
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
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