/// <summary>
        /// Disposes of the resources used by this filter.
        /// </summary>
        public override void Dispose()
        {
            if (m_imageCreator != null) m_imageCreator.Dispose();
            m_imageCreator = null;

            if (m_dzcReader != null) m_dzcReader.Close();
            m_dzcReader = null;
        }
 /// <summary>
 /// Creates a new un-DeepZoom source filter with a given delegate collection source.
 /// </summary>
 /// <param name="source">the collection source from which the collection data should be read</param>
 public UnDeepZoomSourceFilter(IPivotCollectionSource source)
     : base(source)
 {
     m_imageCreator = new UnDeepZoomImageCreator();
 }
Example #3
0
 /// <summary>
 /// Creates a new un-DeepZoom source filter with a given delegate collection source.
 /// </summary>
 /// <param name="source">the collection source from which the collection data should be read</param>
 public UnDeepZoomSourceFilter(IPivotCollectionSource source)
     : base(source)
 {
     m_imageCreator = new UnDeepZoomImageCreator();
 }