Renci.SshNet.ShellStream.SetLength C# (CSharp) Méthode

SetLength() public méthode

This method is not supported.
An I/O error occurs. The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. Methods were called after the stream was closed.
public SetLength ( long value ) : void
value long The desired length of the current stream in bytes.
Résultat void
        public override void SetLength(long value)
        {
            throw new NotSupportedException();
        }