System.IO.Compression.SubReadStream.ThrowIfCantRead C# (CSharp) Method

ThrowIfCantRead() private method

private ThrowIfCantRead ( ) : void
return void
        private void ThrowIfCantRead()
        {
            if (!CanRead)
                throw new NotSupportedException(SR.ReadingNotSupported);
        }