Мой код:
protected void btFeedsPorFechaPublicacion_Click(object sender, EventArgs e)
{
WebClient proxy = new WebClient();
byte[] data = proxy.DownloadData(new Uri("http://tribilin.codefactorycr.com/SORSSJ/rest/servicio/ObtenerFeedsRecientes"));
System.Text.UTF7Encoding utf = new UTF7Encoding();
string s = utf.GetString(data);
FeedEstructuradoC[] d = JsonConvert.DeserializeObject<FeedEstructuradoC[]>(s);
}
Метод ObtenerFeedsRecientes нуждается в параметре, называемом «тег», как мне изменить btFeedsPorFechaPublicacion для достижения этого?
Спасибо!