Renci.SshNet.Abstractions.SocketExtensions
namespace Renci.SshNet.Abstractions
{
internal static class SocketExtensions
{
public static Task ConnectAsync(this Socket socket, EndPoint remoteEndpoint, CancellationToken cancellationToken);
public static Task<int> ReceiveAsync(this Socket socket, byte[] buffer, int offset, int length, CancellationToken cancellationToken);
}
}