<PackageReference Include="SSH.NET" Version="2024.2.0" />

StatVfsReplyInfo

using Renci.SshNet.Common; namespace Renci.SshNet.Sftp.Responses { internal sealed class StatVfsReplyInfo : IExtendedReplyInfo { public SftpFileSystemInformation Information { get; set; } public void LoadData(SshDataStream stream) { Information = new SftpFileSystemInformation(stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64(), stream.ReadUInt64()); } } }