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());
}
}
}