Renci.SshNet.Sftp.Requests.SftpLStatRequest
namespace Renci.SshNet.Sftp.Requests
{
internal class SftpLStatRequest : SftpRequest
{
public string Path { get; }
public Encoding Encoding { get; }
public SftpLStatRequest(uint protocolVersion, uint requestId, string path, Encoding encoding, Action<SftpAttrsResponse> attrsAction, Action<SftpStatusResponse> statusAction);
}
}