BitMiracle.LibTiff.Classic.TiffStream.Close C# (CSharp) Method

Close() public method

Closes the current stream.
public Close ( object clientData ) : void
clientData object A client data (by default, an underlying stream).
return void
        public virtual void Close(object clientData)
        {
            Stream stream = clientData as Stream;
            if (stream == null)
                throw new ArgumentException("Can't get underlying stream to close");

            stream.Close();
        }