ADBaseLibrary.Follows.IsFollow C# (CSharp) Méthode

IsFollow() public méthode

public IsFollow ( string showId, string pluginName ) : bool
showId string
pluginName string
Résultat bool
        public bool IsFollow(string showId, string pluginName)
        {
            if (ShowFollows.Any(a => a.ShowId == showId && a.PluginName == pluginName))
                return true;
            return false;
        }

Same methods

Follows::IsFollow ( string showId, string pluginName, Quality quality, Format format ) : bool