123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Text;
- using System.Threading.Tasks;
- namespace Client.SSE
- {
- public interface IWebRequester
- {
- Task<IServerResponse> Get(Uri url, Dictionary<string, string> headers = null);
- }
- }
|