Renci.SshNet.Sftp.Requests.StatVfsRequest
namespace Renci.SshNet.Sftp.Requests
{
internal class StatVfsRequest : SftpExtendedRequest
{
public string Path { get; }
public Encoding Encoding { get; }
public StatVfsRequest(uint protocolVersion, uint requestId, string path, Encoding encoding, Action<SftpExtendedReplyResponse> extendedAction, Action<SftpStatusResponse> statusAction);
}
}