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.
|
123456789101112 |
- using System.Text;
-
- namespace Learun.Application.WeChat
- {
- public class HttpGetRequest : IHttpSend
- {
- public string Send(string url, string data)
- {
- return new HttpHelper().Get(url, Encoding.UTF8);
- }
- }
- }
|