CSJ2K.j2k.util.ISRandomAccessIO.close C# (CSharp) Метод

close() публичный Метод

Closes this object for reading as well as the wrapped InputStream, if not already closed. The memory used by the cache is released.
If an I/O error occurs while closing the /// underlying InputStream. /// ///
public close ( ) : void
Результат void
        public virtual void close()
        {
            buf = null;
            if (!complete)
            {
                is_Renamed.Dispose();
                is_Renamed = null;
            }
        }