Esempio n. 1
0
 internal void Close()
 {
     try {
         _SourceStream.Close();
     }
     catch (IOException ex) {
         throw NewBitstreamException(BitstreamErrors.STREA_ERROR, ex);
     }
 }
Esempio n. 2
0
 public void close()
 {
     try
     {
         m_SourceStream.Close();
     }
     catch (IOException ex)
     {
         throw newBitstreamException(BitstreamErrors.STREAM_ERROR, ex);
     }
 }