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

SetupWrite() private méthode

Setups the write.
private SetupWrite ( ) : void
Résultat void
        private void SetupWrite()
        {
            if ((!CanWrite))
                throw new NotSupportedException("Write not supported.");

            if (!_bufferOwnedByWrite)
            {
                FlushReadBuffer();
                _bufferOwnedByWrite = true;
            }
        }