Renci.SshNet.Sftp.SftpFileSytemInformation.SftpFileSytemInformation C# (CSharp) Méthode

SftpFileSytemInformation() private méthode

Initializes a new instance of the SftpFileSytemInformation class.
private SftpFileSytemInformation ( ulong bsize, ulong frsize, ulong blocks, ulong bfree, ulong bavail, ulong files, ulong ffree, ulong favail, ulong sid, ulong flag, ulong namemax )
bsize ulong The bsize.
frsize ulong The frsize.
blocks ulong The blocks.
bfree ulong The bfree.
bavail ulong The bavail.
files ulong The files.
ffree ulong The ffree.
favail ulong The favail.
sid ulong The sid.
flag ulong The flag.
namemax ulong The namemax.
        internal SftpFileSytemInformation(ulong bsize, ulong frsize, ulong blocks, ulong bfree, ulong bavail, ulong files, ulong ffree, ulong favail, ulong sid, ulong flag, ulong namemax)
        {
            FileSystemBlockSize = bsize;
            BlockSize = frsize;
            TotalBlocks = blocks;
            FreeBlocks = bfree;
            AvailableBlocks = bavail;
            TotalNodes = files;
            FreeNodes = ffree;
            AvailableNodes = favail;
            Sid = sid;
            _flag = flag;
            MaxNameLenght = namemax;
        }
    }
SftpFileSytemInformation