Exemplo n.º 1
0
        /// <summary>Closes the underlying stream and calls Dispose.</summary>
        public void Close()
        {
            if (m_Disposed)
            {
                throw new ObjectDisposedException(LogSourceName);
            }

            if (m_Initialized)
            {
                M123.Deinitialize();
                m_Initialized = false;
            }
            if (m_Source != null)
            {
                m_Source.Close();
                m_Source           = null;
                m_DecodeFifoBuffer = null;
            }
        }
Exemplo n.º 2
0
 /// <summary>Closes this instance and the underlying stream.</summary>
 public override void Close()
 {
     m_FrameDecoder = null;
     m_Source.Close();
 }
Exemplo n.º 3
0
 /// <summary>Closes this instance and the underlying stream.</summary>
 public override void Close()
 {
     frameDecoder = null;
     source.Close();
 }