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