OctoTorrent.Client.IgnoringPicker.IsInteresting C# (CSharp) Method

IsInteresting() public method

public IsInteresting ( BitField bitfield ) : bool
bitfield BitField
return bool
        public override bool IsInteresting(BitField bitfield)
        {
            temp.From(bitfield).NAnd(this.bitfield);
            if (temp.AllFalse)
                return false;
            return base.IsInteresting(temp);
        }