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

FindStream() public method

public FindStream ( string path ) : TorrentFileStream
path string
return TorrentFileStream
        public TorrentFileStream FindStream(string path)
        {
            return _list.FirstOrDefault(stream => stream.Path == path);
        }