SDownload.Framework.Streams.BaseStream.Finish C# (CSharp) Method

Finish() public method

Called once the whole process is finished. Clears any log data and closes the connection to the view. If this method is overridden, base.Finish() should be called AT THE END of the function.
public Finish ( bool close = true ) : bool
close bool
return bool
        public virtual bool Finish(bool close = true)
        {
            View.Report("Done!", close);

            BugSenseHandler.Instance.ClearCrashExtraData();
            BugSenseHandler.Instance.ClearBreadCrumbs();
            return true;
        }