internal TiffIdf(TiffStream owner, byte[] data)
     : this(owner)
 {
     try
     {
         this.GetTags(data);
     }
     catch
     {
         // Just throw any errors back up the call stack so the calling
         //   app can deal with them.
         throw;
     }
 }
 //***************************************************************************
 // Internal Methods
 //
 internal void SetOwner(TiffStream owner)
 {
     this._owner = owner;
 }
 internal TiffIdf(TiffStream owner)
     : this()
 {
     this._owner = owner;
 }