<PackageReference Include="SSH.NET" Version="2016.1.0-beta1" />

StatVfsResponse

namespace Renci.SshNet.Sftp.Responses { internal class StatVfsResponse : SftpExtendedReplyResponse { public SftpFileSytemInformation Information { get; set; } public StatVfsResponse() : base(0) { } protected override void LoadData() { base.LoadData(); Information = new SftpFileSytemInformation(ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64(), ReadUInt64()); } } }