OctoTorrent.Client.ClientEngine.Contains C# (CSharp) Méthode

Contains() public méthode

public Contains ( InfoHash infoHash ) : bool
infoHash InfoHash
Résultat bool
        public bool Contains(InfoHash infoHash)
        {
            CheckDisposed();
            if (infoHash == null)
                return false;

            return torrents.Exists(m => m.InfoHash.Equals(infoHash));
        }

Same methods

ClientEngine::Contains ( Torrent torrent ) : bool
ClientEngine::Contains ( TorrentManager manager ) : bool