12345678910 |
- using System;
- using System.Collections.Generic;
- namespace SocketIOClient.UriConverters
- {
- public interface IUriConverter
- {
- Uri GetServerUri(bool ws, Uri serverUri, int eio, string path, IEnumerable<KeyValuePair<string, string>> queryParams);
- }
- }
|