TraktPlugin.TraktLists.GetPrivacyLevelIcon C# (CSharp) Méthode

GetPrivacyLevelIcon() static private méthode

static private GetPrivacyLevelIcon ( string privacyLevel ) : string
privacyLevel string
Résultat string
        internal static string GetPrivacyLevelIcon(string privacyLevel)
        {
            if (privacyLevel == "private") return "traktPrivateList.png";
            if (privacyLevel == "friends") return "traktFriendsList.png";
            return "traktPublicList.png";
        }