OctoTorrent.Client.FileStreamBuffer.CloseStream C# (CSharp) Method

CloseStream() private method

private CloseStream ( string path ) : bool
path string
return bool
        internal bool CloseStream(string path)
        {
            TorrentFileStream s = FindStream(path);
            if (s != null)
                CloseAndRemove(s);

            return s != null;
        }