Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

HttpGetRequest.cs 252 B

4 lat temu
123456789101112
  1. using System.Text;
  2. namespace Learun.Application.WeChat
  3. {
  4. public class HttpGetRequest : IHttpSend
  5. {
  6. public string Send(string url, string data)
  7. {
  8. return new HttpHelper().Get(url, Encoding.UTF8);
  9. }
  10. }
  11. }