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