ircsharp/IRCRobots/ITCPTransport.cs

11 lines
239 B
C#
Raw Normal View History

2021-05-28 16:59:54 +00:00
#nullable enable
using System.Threading.Tasks;
namespace IRCRobots
{
public interface ITCPTransport
{
public Task Connect(string hostname, int port, bool useTLS, bool verifyTLS = true, string? bindhost = null);
}
}